Browse Source

[bug] Not sure but it seems this one should be

auth/login as noted on line 64
Alfred Nutile 9 years ago
parent
commit
dae2db0412
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.',
 		]);
 	}