feat: update login error message for incorrect credentials

This commit is contained in:
2026-07-03 08:37:04 -03:00
parent 0efa1650a0
commit 1ae3e9ce92

View File

@@ -22,7 +22,7 @@ class LoginController extends Controller
if (! $user || ! Hash::check($credentials['password'], $user->password)) {
throw ValidationException::withMessages([
'email' => __('auth.failed'),
'email' => 'Email o Contraseña incorrectos.',
]);
}