@extends('backend.layout.master-tailwind') @section('title', __('Loader Settings')) @section('admin_styles') @endsection @section('content')

{{ __('Page Loader Settings') }}

{{ __('Control the page loading animation shown to visitors') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Set to "Disable" to turn off the page loading animation.') }}
@php $loaderVal = get_static_option('page_loader') ?? ''; $loaderLbl = $loaderVal === 'enable' ? __('Enable') : ($loaderVal === 'disable' ? __('Disable') : __('Select option')); @endphp
@csrf
@endsection @section('script') @endsection