I am using Laravel 10 with jetstream +livewire.
in my local host everything is fine, but on server I have an issue.
when I login with wrong credential it redirect me to home page without error and without login.
I tried to to clear cache, update composer, not working.
The issue is that the validation error is thrown, to home page. and i have fixed it by adding this code to
FortifyServiceProviderby adding
redirectTo('login')to theValidationExceptionsolves the problem.