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

{{ $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)
* * * * * cd {{ base_path() }} && {{ exec('which 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 lies) 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']) !!}
@if(is_null($global->logo)) @else @endif
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
@if(is_null($global->login_background)) @else @endif
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
Recommended size: 1500 X 1056 (Pixels)
{{--
@lang('app.generateKey')
--}}
{{--
{{-- @lang('modules.accountSettings.getLocation')
--}}
app_debug == true) checked @endif class="js-switch " data-color="#00c292" data-secondary-color="#f96262"/>
google_recaptcha == 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