import { Form, Head } from '@inertiajs/react'; import { LoaderCircle } from 'lucide-react'; import PasswordResetLinkController from '@/actions/App/Http/Controllers/Auth/PasswordResetLinkController'; import { InputError } from '@/common/InputError'; import { TextLink } from '@/common/TextLink'; import AuthLayout from '@/pages/layouts/AuthLayout'; import { login } from '@/routes'; import { Button } from '@/shadcn/button'; import { Input } from '@/shadcn/input'; import { Label } from '@/shadcn/label'; export default function ForgotPasswordPage({ status }: { status?: string }) { return ( {status &&
{status}
}
{({ processing, errors }) => ( <>
)}
Or, return to log in
); }