@extends('layouts.app') @section('page-title')

@lang($pageTitle)

@endsection @push('head-script') @endpush @section('content')
@if($global->hide_cron_message == 0)
Set following cron command on your server (Ignore if already done)
@php try { echo '* * * * * '.PHP_BINDIR.'/php '. base_path() .'/artisan schedule:run >> /dev/null 2>&1'; } catch (\Throwable $th) { echo '* * * * * /php'. base_path() .'/artisan schedule:run >> /dev/null 2>&1'; } @endphp
@endif @if($global->show_public_message)

Remove public from URL

Create a file with the name .htaccess at the root of folder (where app, bootstrap, config folder resides) and add the following content
                        
<IfModule mod_rewrite.c>

  RewriteEngine  On
  RewriteRule ^(.*)$ public/$1 [L]

</IfModule>
@endif
@lang('modules.accountSettings.updateTitle') @if($cachedFile) @lang('app.disableCache')
@lang('messages.cacheEnabled')
@else @lang('app.enableCache')
@lang('messages.cacheDisabled')
@endif
@include('sections.admin_setting_menu')
{!! Form::open(['id'=>'editSettings','class'=>'ajax-form','method'=>'PUT']) !!}
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
Recommended size: 1500 X 1056 (Pixels)
@lang('app.selectImage') @lang('app.change') @lang('app.remove')

google_recaptcha == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
app_debug == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
system_update == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
dashboard_clock == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
google_recaptcha == false) style="display: none;" @endif>
google_recaptcha == false) style="display: none;" @endif>
{!! Form::close() !!}
@endsection @push('footer-script') @endpush