- {{ 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')
+