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