@include('layouts.header')
@if (config('frontend.maintenance') == 'on')
We are just tuning up a few things.
We apologize for the inconvenience but
{{ config('app.name') }}
is currently undergoing planned maintenance.
@else @if (config('frontend.frontend_page') == 'on')
{{ __('Home') }}
(current)
@if (config('frontend.about_page') == 'on')
{{ __('About') }}
@endif @if (config('frontend.voices_page') == 'on')
{{ __('Voices') }}
@endif @if (config('frontend.blog_page') == 'on')
{{ __('Blog') }}
@endif @if (config('frontend.pricing_page') == 'on')
{{ __('Pricing') }}
@endif @if (config('frontend.contact_page') == 'on')
{{ __('Contact Us') }}
@endif
@if (Route::has('login'))
@auth
{{ __('Dashboard') }}
@else
{{ __('Login') }}
@if (config('settings.registration') == 'enabled') @if (Route::has('register'))
{{ __('Sign Up') }}
@endif @endif @endauth
@endif
@include('layouts.flash')
@yield('content')
@include('cookieConsent::index') @endif @endif @include('layouts.footer-scripts-guest')