From dae2db04128835267b7e2355f8bcda2e4a74e176 Mon Sep 17 00:00:00 2001 From: Alfred Nutile Date: Mon, 13 Oct 2014 12:54:29 -0400 Subject: [PATCH] [bug] Not sure but it seems this one should be auth/login as noted on line 64 --- app/Http/Controllers/Auth/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Auth/AuthController.php b/app/Http/Controllers/Auth/AuthController.php index 9e600861..ee5faac1 100644 --- a/app/Http/Controllers/Auth/AuthController.php +++ b/app/Http/Controllers/Auth/AuthController.php @@ -85,7 +85,7 @@ public function login(LoginRequest $request) return redirect('/'); } - return redirect('/login')->withErrors([ + return redirect('/auth/login')->withErrors([ 'email' => 'These credentials do not match our records.', ]); }