@extends('panel.layout.settings', ['disable_tblr' => true, 'layout' => 'fullwidth']) @section('title', __('Edit Curtain Section')) @section('titlebar_actions', '') @section('settings')
@csrf @method('PUT')

{{ __('Sliders') }}

{{ __('Add Slider') }}
@php $empty = [ 'title' => '', 'description' => '', 'bg_image' => '', 'bg_video' => '', 'bg_color' => '', 'title_color' => '', 'description_color' => '', ]; $sliders = $item['sliders'] ?? [$empty, $empty, $empty]; @endphp
@foreach($sliders as $key => $slider)

{{ __('Slider') }} #{{ $key + 1 }}

{{ __('Remove') }}
{{ $slider['description'] ?? '' }}
@if(isset($slider['bg_image']) && $slider['bg_image']) Image Download @endif @if(isset($slider['bg_video']) && $slider['bg_video']) Video Download @endif
@endforeach
{{ __('Save') }} @endsection @push('script') @endpush