fix optimizer

This commit is contained in:
Saeed Vaziry
2025-06-20 00:02:22 +02:00
parent cf9bb35615
commit 7a94e28da2
7 changed files with 7 additions and 6 deletions

View File

@ -17,7 +17,7 @@ export default function ConfirmPassword() {
const submit: FormEventHandler = (e) => {
e.preventDefault();
post(route('password.confirm'), {
post(route('password.confirm.store'), {
onFinish: () => reset('password'),
});
};

View File

@ -30,7 +30,7 @@ export default function Login({ status, canResetPassword }: LoginProps) {
const submit: FormEventHandler = (e) => {
e.preventDefault();
post(route('login'), {
post(route('login.store'), {
onFinish: () => reset('password'),
});
};