Can I get an ID or value from Dropify input when clicking the remove button if there’s a default value?
<input type="file" name="galleryImages{{ $key }}[]" value="1" data-default-file="{{ asset('storage/services/' . $service->slug . '/gallery/' . $key . '/' . $imageItem) }}" class="dropify" data-id="{{ $key }}" > For each input field i want to get back the value of that clicked input. enter…