use ResetsPasswords;
+ protected $redirectTo = '/';
+
/**
* Create a new controller instance.
*
$this->middleware('guest');
parent::__construct();
}
+
+ /**
+ * Get the response for a successful password reset.
+ *
+ * @param string $response
+ * @return \Illuminate\Http\Response
+ */
+ protected function sendResetResponse($response)
+ {
+ $message = trans('auth.reset_password_success');
+ session()->flash('success', $message);
+ return redirect($this->redirectPath())
+ ->with('status', trans($response));
+ }
}
\ No newline at end of file