Browse Source

Merge pull request #3081 from alnutile/patch-5

[bug] Not sure but it seems this one should be
Taylor Otwell 9 years ago
parent
commit
95e934698f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/Auth/AuthController.php

+ 1 - 1
app/Http/Controllers/Auth/AuthController.php

@@ -85,7 +85,7 @@ class AuthController {
 			return redirect('/');
 		}
 
-		return redirect('/login')->withErrors([
+		return redirect('/auth/login')->withErrors([
 			'email' => 'These credentials do not match our records.',
 		]);
 	}