{{-- resources/views/admin/galleries/edit.blade.php --}} @extends('layouts.admin') @section('content')

Edit Gallery: {{ $gallery->title }}

@csrf @method('PUT')
@foreach($gallery->images as $image)
{{ $image->caption }}
@endforeach
Drag and drop to reorder images
You can select multiple images (JPG, PNG, GIF, WEBP - Max 2MB each)
Cancel
@push('scripts') @endpush @endsection