@extends('layouts.tenant-admin') @section('title', $gallery->exists ? 'تعديل معرض' : 'معرض جديد') @section('content')

{{ $gallery->exists ? 'تعديل: '.$gallery->title : 'معرض صور جديد' }}

@csrf @if ($gallery->exists) @method('PUT') @endif
exists ? '' : 'required' }} class="w-full border rounded p-2">
@if ($gallery->exists && $gallery->images->count())
@foreach ($gallery->images as $image)
@csrf @method('DELETE')
@endforeach
@endif @endsection