From a4a686662f07710a9a221ba0dda56bcdf4ecc149 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Sun, 22 Apr 2018 22:33:03 -0400 Subject: [PATCH] Redirect the user to the login screen after resetting their password instead of the public site --- app/Http/Controllers/Auth/ResetPasswordController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Auth/ResetPasswordController.php b/app/Http/Controllers/Auth/ResetPasswordController.php index 2c863aa..7abd5fb 100644 --- a/app/Http/Controllers/Auth/ResetPasswordController.php +++ b/app/Http/Controllers/Auth/ResetPasswordController.php @@ -25,7 +25,7 @@ class ResetPasswordController extends Controller * * @var string */ - protected $redirectTo = '/'; + protected $redirectTo = '/login'; /** * Create a new controller instance.