From f8f652514ed0813b6891549d2ed0e52a56b834cd Mon Sep 17 00:00:00 2001 From: Joseph Cohen Date: Thu, 1 Jan 2015 19:37:36 -0600 Subject: [PATCH] Fix auth user path config --- app/config/auth.php | 2 +- app/views/auth/login.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config/auth.php b/app/config/auth.php index 63c84908..f567569d 100644 --- a/app/config/auth.php +++ b/app/config/auth.php @@ -28,7 +28,7 @@ return [ | */ - 'model' => 'User', + 'model' => 'CachetHQ\Cachet\Models\User', /* |-------------------------------------------------------------------------- diff --git a/app/views/auth/login.blade.php b/app/views/auth/login.blade.php index a91a31ac..9d319f7f 100644 --- a/app/views/auth/login.blade.php +++ b/app/views/auth/login.blade.php @@ -11,7 +11,7 @@ {{ trans('cachet.login_message') }} @if(Session::has('error')) - {{ Session::get('error') }} +

{{ Session::get('error') }}

@endif