@extends('backend.layout.master-tailwind') @section('title', __('Enable Disable Jobs')) @section('admin_styles') @endsection @section('content')

{{ __('Jobs') }}

{{ __('Enable or disable the Jobs section site-wide') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Set to "Disable" to hide the Jobs section from the site.') }}
@php $jobVal = get_static_option('job_enable_disable') ?? ''; $jobLbl = $jobVal === 'enable' ? __('Enable') : ($jobVal === 'disable' ? __('Disable') : __('Select option')); @endphp
@csrf
@endsection @section('script') @endsection