我以前把它放在适当的位置它已被覆盖。我需要在登录失败时将验证错误重定向到登录页面
redirect('login')->withErrors($validator, 'login');
如何替换sendFailedLoginResponse以重定向到带有错误的登录页面
throw ValidationException::withMessages([
$this->username() => [trans('auth.failed')],
]);
我添加了此内容,但未显示所需的验证错误
return redirect('/login')->withErrors([
$this->username() => [trans('auth.failed')],
],'login');