@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)
@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(!module_enabled('RestAPI')) @if($cachedFile) @lang('app.disableCache')
@lang('messages.cacheEnabled')
@else @lang('app.enableCache')
@lang('messages.cacheDisabled')
@endif @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')
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
Recommended size: 1500 X 1056 (Pixels)
{!! Form::close() !!}
@endsection @push('footer-script') @endpush