• {{ __('Home') }} (current)
  • @if (config('frontend.features_section') == 'on')
  • {{ __('Features') }}
  • @endif @if (config('frontend.pricing_section') == 'on')
  • {{ __('Pricing') }}
  • @endif @if (config('frontend.faq_section') == 'on')
  • {{ __('FAQs') }}
  • @endif @if (config('frontend.blogs_section') == 'on')
  • {{ __('Blogs') }}
  • @endif
@if (Route::has('login'))
{{ ucfirst(Config::get('locale')[App::getLocale()]['code']) }}
@foreach (Config::get('locale') as $lang => $language) @if ($lang != App::getLocale())
{{ $language['display'] }}
@endif @endforeach
@auth {{ __('Dashboard') }} @else {{ __('Sign In') }} @if (config('settings.registration') == 'enabled') @if (Route::has('register')) {{ __('Sign Up') }} @endif @endif @endauth
@endif