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

{{ __('Projects') }}

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

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