import { Form, Head } from '@inertiajs/react';
import { LoaderCircle } from 'lucide-react';
import NewPasswordController from '@/actions/App/Http/Controllers/Auth/NewPasswordController';
import { InputError } from '@/common/InputError';
import AuthLayout from '@/pages/layouts/AuthLayout';
import { Button } from '@/shadcn/button';
import { Input } from '@/shadcn/input';
import { Label } from '@/shadcn/label';
interface ResetPasswordProps {
token: string;
email: string;
}
export default function ResetPasswordPage({ token, email }: ResetPasswordProps) {
return (