Home > OS >  Customize Jetstream Login Page Validation Error Messages in Laravel 9
Customize Jetstream Login Page Validation Error Messages in Laravel 9

Time:06-05

How can I Customize Jetstream Login Page Validation Error Messages in Laravel 9?? When i input wrong email & password it shows "credentials does not match" but i want to customize this message.. How can i do it?

CodePudding user response:

Open this file project/resources/lang/en/auth.php you can update the message from there

'failed' => 'Whoops! These credentials do not match our records.',

  • Related