@extends('admin.layout.admin') @section('title') {{ $title }} @endsection @section('content') {{-- Alert Messages --}} @if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif
Harap Upload Gambar Background dengan rasio 16:9
{{-- Form Upload Gambar Baru --}}
@csrf
preview
Format: JPEG, PNG, JPG, WEBP. Maksimal 5MB
{{-- List Background Images --}} @if($backgrounds && $backgrounds->count() > 0)
Daftar Background Images
@foreach($backgrounds as $background) {{-- Edit Modal --}} @endforeach
Preview Judul Deskripsi Aksi
{{ $background->title }} {{ $background->title ?? '-' }} {{ Str::limit($background->description ?? '-', 50) }}
{{-- Toggle Active --}} {{-- Edit Button --}} {{-- Delete --}}
@csrf @method('DELETE')
@else

Belum ada background yang diupload

@endif
@endsection @push('scripts') @endpush