@yield('styles')
{{ config('app.name', 'Laravel') }}
@guest @else
{{ __('Dashboard') }}
@endguest
@guest
{{ __('Login') }}
@if(Route::has('register'))
{{ __('Register') }}
@endif @else
{{ Auth::user()->name }}
{{ __('My profile') }}
@can('app_user_progress_access')
{{ trans('cruds.appUserProgress.title') }}
@endcan @can('app_management_access')
{{ trans('cruds.appManagement.title') }}
@endcan @can('app_version_access')
{{ trans('cruds.appVersion.title') }}
@endcan @can('popup_text_access')
{{ trans('cruds.popupText.title') }}
@endcan @can('pronunciation_guide_access')
{{ trans('cruds.pronunciationGuide.title') }}
@endcan @can('category_access')
{{ trans('cruds.category.title') }}
@endcan @can('word_access')
{{ trans('cruds.word.title') }}
@endcan @can('app_user_management_access')
{{ trans('cruds.appUserManagement.title') }}
@endcan @can('app_user_access')
{{ trans('cruds.appUser.title') }}
@endcan @can('offline_username_access')
{{ trans('cruds.offlineUsername.title') }}
@endcan @can('content_management_access')
{{ trans('cruds.contentManagement.title') }}
@endcan @can('content_category_access')
{{ trans('cruds.contentCategory.title') }}
@endcan @can('content_tag_access')
{{ trans('cruds.contentTag.title') }}
@endcan @can('content_page_access')
{{ trans('cruds.contentPage.title') }}
@endcan @can('faq_management_access')
{{ trans('cruds.faqManagement.title') }}
@endcan @can('faq_category_access')
{{ trans('cruds.faqCategory.title') }}
@endcan @can('faq_question_access')
{{ trans('cruds.faqQuestion.title') }}
@endcan @can('user_alert_access')
{{ trans('cruds.userAlert.title') }}
@endcan @can('user_management_access')
{{ trans('cruds.userManagement.title') }}
@endcan @can('permission_access')
{{ trans('cruds.permission.title') }}
@endcan @can('role_access')
{{ trans('cruds.role.title') }}
@endcan @can('user_access')
{{ trans('cruds.user.title') }}
@endcan
{{ __('Logout') }}
@csrf
@endguest
@if(session('message'))
{{ session('message') }}
@endif @if($errors->count() > 0)
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif @yield('content')
@yield('scripts')