@if (old('gallery') ?? count($service->gallery))
@php
$ids = json_decode(old('gallery'), true);
$gallery = old('gallery') ? \App\Models\Image::whereIn('id', $ids)->get() : $service->gallery;
@endphp
@if (count($gallery))
@foreach ($gallery as $image)
loading
pathImage }}>
@endforeach
@endif
@endif