import React from 'react'; import Button from '@/Components/Button'; import Guest from '@/Layouts/Guest'; import Input from '@/Components/Input'; import ValidationErrors from '@/Components/ValidationErrors'; import { Head, useForm } from '@inertiajs/inertia-react'; export default function ForgotPassword({ status }) { const { data, setData, post, processing, errors } = useForm({ email: '', }); const onHandleChange = (event) => { setData(event.target.name, event.target.value); }; const submit = (e) => { e.preventDefault(); post(route('password.email')); }; return (
Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.
{status &&
{status}
}
); }