@extends('admin.settings.setting-layout') @section('title') {{ __('website_settings') }} @endsection @section('breadcrumbs')

{{ __('settings') }}

@endsection @section('website-settings')
{{ __('basic_setting') }}
@method('PUT') @csrf
@error('dark_logo') {{ __($message) }} @enderror
@error('light_logo_url') {{ __($message) }} @enderror
@error('favicon_image') {{ __($message) }} @enderror
@if (userCan('setting.update')) @endif

{{ __('recaptcha_configuration') }} ({{ __('get_help') }})

@method('PUT') @csrf
@error('nocaptcha_key') {{ $message }} @enderror
@error('nocaptcha_secret') {{ $message }} @enderror
{!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@if (userCan('setting.update'))
@endif

{{ __('Google Analytics Configuration') }} ({{ __('get_help') }})

@method('PUT') @csrf
@error('analytics_id') {{ $message }} @enderror
@if (userCan('setting.update'))
@endif

{{ __('google_job_indexing_configuration') }} ({{ __('prerequisites') }})

@method('PUT') @csrf
@error('job_indexing_access_token') {{ $message }} @enderror Note: Google Analytics must be properly configured to use Google Indexing
@if (userCan('setting.update'))
@endif

{{ __('app_configuration') }}

@csrf @method('PUT')
email_verification ? 'checked' : '' }} name="email_verification" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('on') }}" data-off-color="default" data-off-text="{{ __('off') }}" data-size="small" value="1">
job_auto_approved ? 'checked' : '' }} name="job_approval" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('auto') }}" data-off-color="default" data-off-text="{{ __('manual') }}" data-size="small" value="1">
language_changing ? 'checked' : '' }} name="language_changing" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('on') }}" data-off-color="default" data-off-text="{{ __('off') }}" data-size="small" value="1">
currency_switcher ? 'checked' : '' }} name="currency_switcher" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('on') }}" data-off-color="default" data-off-text="{{ __('off') }}" data-size="small" value="1">
employer_auto_activation ? 'checked' : '' }} name="employer_auto_activation" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('on') }}" data-off-color="default" data-off-text="{{ __('off') }}" data-size="small" value="1">
candidate_account_auto_activation ? 'checked' : '' }} name="candidate_account_auto_activation" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('on') }}" data-off-color="default" data-off-text="{{ __('off') }}" data-size="small" value="1">
edited_job_auto_approved ? 'checked' : '' }} name="edited_job_approval" data-on-color="success" data-bootstrap-switch data-on-text="{{ __('auto') }}" data-off-color="default" data-off-text="{{ __('manual') }}" data-size="small" value="1">
@method('PUT') @csrf

{{ __('location_configuration') }}

@error('ip_based_location') {{ $message }} @enderror
default_map == 'leaflet' ? 'checked' : '' }}>
default_map == 'map-box' ? 'checked' : '' }}>
default_map == 'google-map' ? 'checked' : '' }}>
@error('map_type') {{ $message }} @enderror
@error('map_box_key') {{ $message }} @enderror
@error('google_map_key') {{ $message }} @enderror
@error('default_latitude') {{ $message }} @enderror
@error('default_longitude') {{ $message }} @enderror
app_country_type == 'single_base' ? 'checked' : '' }}>
app_country_type == 'multiple_base' ? 'checked' : '' }}>
@php $active_countries = $countries ->where('status', 1) ->pluck('id') ->toArray(); @endphp
@endsection @section('style') @endsection @section('script') @endsection