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

{{ __('Back to Top Settings') }}

{{ __('Control the scroll-to-top button shown on the frontend') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Set to "Disable" to hide the back-to-top button on the frontend.') }}
@php $bttVal = get_static_option('bottom_to_top') ?? ''; $bttLbl = $bttVal === 'enable' ? __('Enable') : ($bttVal === 'disable' ? __('Disable') : __('Select option')); @endphp
@csrf
@endsection @section('script') @endsection