Show success message to the user

This commit is contained in:
Dane Everitt 2019-06-11 23:19:43 -07:00
parent 435626f4b7
commit 19ef901768
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 8 additions and 8 deletions

View file

@ -33,10 +33,11 @@ class ForgotPasswordController extends Controller
/**
* Get the response for a successful password reset link.
*
* @param string $response
* @param \Illuminate\Http\Request $request
* @param string $response
* @return \Illuminate\Http\JsonResponse
*/
protected function sendResetLinkResponse($response): JsonResponse
protected function sendResetLinkResponse(Request $request, $response): JsonResponse
{
return response()->json([
'status' => trans($response),