From 4b25418659217dafb720aac4072ca63adead2820 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 23 Aug 2018 19:10:04 -0600 Subject: [PATCH] Add new base layout for non auth users --- resources/views/layouts/anon.blade.php | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 resources/views/layouts/anon.blade.php diff --git a/resources/views/layouts/anon.blade.php b/resources/views/layouts/anon.blade.php new file mode 100644 index 000000000..4621b821c --- /dev/null +++ b/resources/views/layouts/anon.blade.php @@ -0,0 +1,40 @@ + + + + + + + + + + + + + {{ $title or config('app.name', 'Laravel') }} + + @if(isset($title)) + + + + @endif + + @stack('meta') + + + + + + + + @stack('styles') + + + @include('layouts.partial.noauthnav') +
+ @yield('content') +
+ @include('layouts.partial.footer') + + @stack('scripts') + +