@extends('layouts.admin') @section('title', 'Edit Gallery') @section('content')

Edit Gallery

View Back to Galleries
@csrf @method('PUT') @if(Auth::guard('admin')->user()->is_super_admin)
Select the domain for this gallery @error('domain_id')
{{ $message }}
@enderror
@endif
The title of your gallery @error('title')
{{ $message }}
@enderror
The date when this gallery was created (will be displayed as "January 2026") @error('gallery_date')
{{ $message }}
@enderror
Optional description for the gallery @error('description')
{{ $message }}
@enderror
@if($gallery->images && count($gallery->images) > 0) @foreach($gallery->images as $index => $image)
@endforeach @else
@endif
Add multiple images for this gallery. You can paste URLs or use the file manager to browse uploaded files.
@if($gallery->videos && count($gallery->videos) > 0) @foreach($gallery->videos as $index => $video)
@endforeach @else
@endif
Add multiple videos for this gallery. You can paste URLs or use the file manager to browse uploaded video files.
Lower numbers appear first (0 = highest priority) @error('sort_order')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}>
Inactive galleries won't be displayed on the frontend
Cancel
@endsection @push('scripts') @endpush