@extends('admin.layout') @section('title', 'Manage Album') @section('page_heading', 'Manage Album: ' . $album->year) @section('content')
{{-- ── Left column: album details + uploader ──────────────────── --}}
{{-- Album Details --}}
Album Details
@csrf @method('PUT')
is_published) ? 'checked' : '' }}>
Back
{{-- AJAX Image Uploader --}}
Upload Images
{{-- Drop Zone --}}

Drag & drop images here

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

{{-- Hidden file input --}} {{-- File queue list --}}
    {{-- Overall progress bar --}}
    {{-- ── Right column: image grid ─────────────────────────────────── --}}
    Images {{ $album->images->count() }}
    Drag thumbnails to reorder
    @foreach ($album->images as $img)
    Image
    @endforeach
    @if ($album->images->isEmpty())

    No images uploaded yet.

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