Merge pull request #718 from cachethq/new-login

Added "Login" to login page title
This commit is contained in:
James Brooks 2015-06-13 15:37:20 +01:00
commit c471105fdd

View File

@ -32,7 +32,9 @@ class AuthController extends AbstractController
*/
public function showLogin()
{
return View::make('auth.login');
return View::make('auth.login')->with([
'pageTitle' => trans('dashboard.login.login'),
]);
}
/**