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

{{ __('Sticky Menu Settings') }}

{{ __('Control whether the navigation menu sticks to the top on scroll') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Set to "Disable" to turn off the sticky navigation menu.') }}
@php $stickyVal = get_static_option('sticky_menu') ?? ''; $stickyLbl = $stickyVal === 'enable' ? __('Enable') : ($stickyVal === 'disable' ? __('Disable') : __('Select option')); @endphp
@csrf
@endsection @section('script') @endsection