public function __construct()
{
$this->middleware('guest');
+ $this->middleware('guard:standard');
parent::__construct();
}
if ($response === Password::RESET_LINK_SENT) {
$message = trans('auth.reset_password_sent_success', ['email' => $request->get('email')]);
- $this->showSuccessNotification( $message);
+ $this->showSuccessNotification($message);
return back()->with('status', trans($response));
}