feat: update login error message for incorrect credentials
This commit is contained in:
@@ -22,7 +22,7 @@ class LoginController extends Controller
|
|||||||
|
|
||||||
if (! $user || ! Hash::check($credentials['password'], $user->password)) {
|
if (! $user || ! Hash::check($credentials['password'], $user->password)) {
|
||||||
throw ValidationException::withMessages([
|
throw ValidationException::withMessages([
|
||||||
'email' => __('auth.failed'),
|
'email' => 'Email o Contraseña incorrectos.',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user