@extends('admin.layout') @section('title', 'Edit Sport') @section('page_heading', 'Edit Sport: ' . $sport->name) @section('content') @if(session('status'))
{{ session('status') }}
@endif @if($errors->any())
@endif
{{-- ── Left: sport details + image uploader ──────────────────── --}}
{{-- Sport Details --}}
Sport Details
@csrf @method('PUT')
Preview:
is_active) ? 'checked' : '' }}>
Back
{{-- Image Uploader --}}
Upload Images

Drag & drop images here

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

    {{-- ── Right: image grid ─────────────────────────────────── --}}
    Images {{ $sport->images->count() }}
    Drag thumbnails to reorder
    @foreach ($sport->images as $img)
    Image
    @endforeach
    @if ($sport->images->isEmpty())

    No images uploaded yet.

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