diff --git a/resources/views/layouts/app_welcome.blade.php b/resources/views/layouts/app_welcome.blade.php index eb2f8f1..c7ff39d 100644 --- a/resources/views/layouts/app_welcome.blade.php +++ b/resources/views/layouts/app_welcome.blade.php @@ -21,26 +21,42 @@ @include('flash::message') -
-
- {{ Html::link('/', config('app.name', 'Laravel')) }} +
+
+
+
+ {{ Html::link('/', config('app.name', 'Laravel')) }} +
+ + @if (Route::has('login')) +
+ @guest + {{ Html::linkRoute('login', __('common.nav.login'), null, ['class' => 'text-primary-300 hover:text-white uppercase pr-4 transition-all duration-200']) }} + + @if (Route::has('register')) + {{ Html::linkRoute('register', __('common.nav.register'), null, ['class' => 'text-primary-300 hover:text-white uppercase pl-4 transition-all duration-200']) }} + @endif + @endauth +
+ @endif +
- @if (Route::has('login')) -
- @guest - {{ Html::linkRoute('login', __('common.nav.login'), null, ['class' => 'text-primary-300 hover:text-white uppercase pr-4 transition-all duration-200']) }} - - @if (Route::has('register')) - {{ Html::linkRoute('register', __('common.nav.register'), null, ['class' => 'text-primary-300 hover:text-white uppercase pl-4 transition-all duration-200']) }} - @endif - @endauth -
- @endif + + + + + + + + +
- @yield('content') +
+ @yield('content') +