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

{{ __('Home Page Animation') }}

{{ __('Control entrance animations displayed on the home page') }}

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