@include('partials.superadmin.header') @include('partials.superadmin.menu') @php $lang = \App\Models\Utility::getValByName('default_language'); // $logo=asset(Storage::url('uploads/logo/')); $logo=\App\Models\Utility::get_file('uploads/logo'); $SITE_RTL = Utility::getValByName('SITE_RTL'); $logo_light = \App\Models\Utility::getValByName('logo_light'); $logo_dark = \App\Models\Utility::getValByName('logo_dark'); $company_favicon = \App\Models\Utility::getValByName('company_favicon'); $setting = \App\Models\Utility::colorset(); $mode_setting = \App\Models\Utility::mode_layout(); $color = (!empty($setting['color'])) ? $setting['color'] : 'theme-3'; $SITE_RTL= isset($setting['SITE_RTL'])?$setting['SITE_RTL']:'off'; @endphp @php $file_type = config('files_types'); $setting = App\Models\Utility::settings(); $local_storage_validation = $setting['local_storage_validation']; $local_storage_validations = explode(',', $local_storage_validation); $s3_storage_validation = $setting['s3_storage_validation']; $s3_storage_validations = explode(',', $s3_storage_validation); $wasabi_storage_validation = $setting['wasabi_storage_validation']; $wasabi_storage_validations = explode(',', $wasabi_storage_validation); @endphp @if($color == 'theme-3') @endif @if($color == 'theme-2') @endif @if($color == 'theme-4') @endif @if($color == 'theme-1') @endif
{{ __('Site Setting') }}
{{ Form::model($settings, ['url' => 'systems', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Logo dark') }}
@error('full_logo')
@enderror
{{ __('Logo Light') }}
@error('logo_light')
@enderror
{{ __('Favicon') }}
@error('favicon')
@enderror
{{Form::label('title_text',__('Title Text'),array('class'=>'form-label')) }} {{Form::text('title_text',null,array('class'=>'form-control','placeholder'=>__('Title Text')))}} @error('title_text') {{ $message }} @enderror
{{Form::label('footer_text',__('Footer Text'),['class'=>'form-label']) }} {{Form::text('footer_text',Utility::getValByName('footer_text'),array('class'=>'form-control','placeholder'=>__('Enter Footer Text')))}} @error('footer_text') {{ $message }} @enderror
{{Form::label('default_language',__('Default Language'),['class'=>'form-label text-dark']) }}
@error('default_language') {{ $message }} @enderror
{{Form::label('cookie_text',__('GDPR Cookie Text'),array('class'=>'fulltime') )}} {!! Form::textarea('cookie_text',isset($settings['cookie_text']) && $settings['cookie_text'] ? $settings['cookie_text'] : '' , ['class'=>'form-control fulltime','style'=>'display: hidden;resize: none;','rows'=>'4']) !!}

{{__('Theme Customizer')}}

{{ __('Primary color settings') }}

{{__('Sidebar settings')}}

{{__('Layout settings')}}

{{ Form::close() }}
{{ __('Email Setting') }}
{{ Form::open(['route' => 'email.settings', 'method' => 'post']) }} @csrf
{{ Form::label('mail_driver', __('Mail Driver'), ['class' => 'form-label']) }} {{ Form::text('mail_driver', env('MAIL_DRIVER'), ['class' => 'form-control', 'placeholder' => __('Enter Mail Driver')]) }} @error('mail_driver') {{ $message }} @enderror
{{ Form::label('mail_host', __('Mail Host'), ['class' => 'form-label']) }} {{ Form::text('mail_host', env('MAIL_HOST'), ['class' => 'form-control ', 'placeholder' => __('Enter Mail Host')]) }} @error('mail_host') {{ $message }} @enderror
{{ Form::label('mail_port', __('Mail Port'), ['class' => 'form-label']) }} {{ Form::text('mail_port', env('MAIL_PORT'), ['class' => 'form-control', 'placeholder' => __('Enter Mail Port')]) }} @error('mail_port') {{ $message }} @enderror
{{ Form::label('mail_username', __('Mail Username'), ['class' => 'form-label']) }} {{ Form::text('mail_username', env('MAIL_USERNAME'), ['class' => 'form-control', 'placeholder' => __('Enter Mail Username')]) }} @error('mail_username') {{ $message }} @enderror
{{ Form::label('mail_password', __('Mail Password'), ['class' => 'form-label']) }} {{ Form::text('mail_password', env('MAIL_PASSWORD'), ['class' => 'form-control', 'placeholder' => __('Enter Mail Password')]) }} @error('mail_password') {{ $message }} @enderror
{{ Form::label('mail_encryption', __('Mail Encryption'), ['class' => 'form-label']) }} {{ Form::text('mail_encryption', env('MAIL_ENCRYPTION'), ['class' => 'form-control', 'placeholder' => __('Enter Mail Encryption')]) }} @error('mail_encryption') {{ $message }} @enderror
{{ Form::label('mail_from_address', __('Mail From Address'), ['class' => 'form-label']) }} {{ Form::text('mail_from_address', env('MAIL_FROM_ADDRESS'), ['class' => 'form-control', 'placeholder' => __('Enter Mail From Address')]) }} @error('mail_from_address') {{ $message }} @enderror
{{ Form::label('mail_from_name', __('Mail From Name'), ['class' => 'form-label']) }} {{ Form::text('mail_from_name', env('MAIL_FROM_NAME'), ['class' => 'form-control', 'placeholder' => __('Enter Mail From Name')]) }} @error('mail_from_name') {{ $message }} @enderror
{{ Form::close() }}
{{ __('Payment Setting') }}
{{ __('This detail will use for collect payment on plan from company . On plan company will find out pay now button based on your below configuration.') }}
{{ Form::open(['route' => 'payment.settings', 'method' => 'post']) }} @csrf
{{ Form::label('currency_symbol', __('Currency Symbol '), ['class' => 'form-label']) }} {{ Form::text('currency_symbol', env('CURRENCY_SYMBOL'), ['class' => 'form-control', 'required', 'placeholder' => __('Enter Currency Symbol')]) }} @error('currency_symbol') {{ $message }} @enderror
{{ Form::label('currency', __('Currency *'), ['class' => 'form-label']) }} {{ Form::text('currency', env('CURRENCY'), ['class' => 'form-control font-style', 'required', 'placeholder' => __('Enter Currency')]) }} {{ __('Note: Add currency code as per three-letter ISO code.') }}
{{ __('you can find out here..') }}

@error('currency') {{ $message }} @enderror


{{-- --}}
{{-- --}}


@if ($errors->has('mercado_secret_key')) {{ $errors->first('mercado_access_token') }} @endif



{{ __('Pusher Setting') }}
{{Form::model($settings,array('route'=>'pusher.setting','method'=>'post'))}} @csrf
{{Form::label('pusher_app_id',__('Pusher App Id'),array('class'=>'form-label')) }} {{Form::text('pusher_app_id',env('PUSHER_APP_ID'),array('class'=>'form-control font-style'))}} @error('pusher_app_id') {{ $message }} @enderror
{{Form::label('pusher_app_key',__('Pusher App Key'),array('class'=>'form-label')) }} {{Form::text('pusher_app_key',env('PUSHER_APP_KEY'),array('class'=>'form-control font-style'))}} @error('pusher_app_key') {{ $message }} @enderror
{{Form::label('pusher_app_secret',__('Pusher App Secret'),array('class'=>'form-label')) }} {{Form::text('pusher_app_secret',env('PUSHER_APP_SECRET'),array('class'=>'form-control font-style'))}} @error('pusher_app_secret') {{ $message }} @enderror
{{Form::label('pusher_app_cluster',__('Pusher App Cluster'),array('class'=>'form-label')) }} {{Form::text('pusher_app_cluster',env('PUSHER_APP_CLUSTER'),array('class'=>'form-control font-style'))}} @error('pusher_app_cluster') {{ $message }} @enderror
{{ Form::close() }}
@csrf
{{ Form::close() }}
{{ Form::open(array('route' => 'storage.setting.store', 'enctype' => "multipart/form-data")) }}
{{ __('Storage Settings') }}
{{--

{{ __('Local Settings') }}

--}}
{{Form::label('local_storage_validation',__('Only Upload Files'),array('class'=>' form-label')) }}
{{Form::label('s3_storage_validation',__('Only Upload Files'),array('class'=>' form-label')) }}
{{Form::label('wasabi_storage_validation',__('Only Upload Files'),array('class'=>'form-label')) }}
{{Form::close()}}
@include('partials.superadmin.footer')