@extends('admin.layout') @section('title', 'Edit Section') @section('page_heading', 'Edit Section: ' . ($section->title ?: 'Untitled')) @section('content')
{{-- ── Left column ──────────────────────────────────────── --}}
{{-- Section details --}}
Section Details
@if(session('status')) @endif
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
{{-- AJAX Image Uploader --}}
Upload Photos

Drag & drop images here

or click to browse — PNG, JPG, JPEG • max 5 MB each

    {{-- Danger zone --}}
    Delete Section

    This will permanently delete the section and all its photos.

    @csrf @method('DELETE')
    {{-- ── Right column: image grid ─────────────────────── --}}
    Photos {{ $section->images->count() }}
    Drag thumbnails to reorder
    @foreach($section->images as $img)
    Photo
    @endforeach
    @if($section->images->isEmpty())

    No photos uploaded yet.

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