ip(), $request->input('email'))); return $this->sendResetLinkResponse($request, Password::RESET_LINK_SENT); } /** * Get the response for a successful password reset link. * * @param string $response * @return \Illuminate\Http\JsonResponse */ protected function sendResetLinkResponse($response): JsonResponse { return response()->json([ 'status' => trans($response), ]); } }