Added "Login" to login page title

This commit is contained in:
James Brooks
2015-06-13 14:39:32 +01:00
parent 3c5c8b0096
commit 112a104a6b

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'),
]);
}
/**