Fixed typo

This commit is contained in:
Graham Campbell
2015-08-03 22:00:49 +01:00
parent 549c4e1594
commit 578d4befef

View File

@@ -33,7 +33,7 @@ class AuthRoutes
$router->post('login', [
'middleware' => ['guest', 'csrf', 'throttling:10,10'],
'as' => 'logout',
'as' => 'login',
'uses' => 'AuthController@postLogin',
]);