@if(config('app.url') !== 'http://localhost') @else @endif
@if ($message = Session::get('success'))

{{ $message }}

@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(!($allusers->count() <= 1 || config('app.auth_roles_enable')))
@if($current_user->avatar) @else @endif {{ $current_user->username }} Switch User
@endif @yield('content') @if($enable_auth_admin_controls)
@if(Route::is('dash') || Route::is('tags.show'))
{{ __('app.dashboard.reorder') }}
@endif
{{ __('app.dashboard') }}
@if($current_user->id === 1 && !config('app.auth_roles_enable'))
{{ __('app.user.user_list') }}
@endif
{{ __('app.apps.app_list') }}
{{ __('app.apps.tag_list') }}
{{ __('app.dashboard.settings') }}
@endif
@if($trianglify == 'true') @endif @yield('scripts')