@extends('layouts.super-admin') @section('page-title')

{{ __($pageTitle) }}

@endsection @push('head-script') @endpush @section('content')
@if(!$global->hide_cron_message)
Set following cron command on your server (Ignore if already done)
* * * * * cd {{ base_path() }} && php artisan schedule:run >> /dev/null 2>&1
@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.super_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')
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
Recommended size: 1500 X 1056 (Pixels)
system_update == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
email_verification == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
{!! Form::close() !!}
@endsection @push('footer-script') @endpush