Closed j-dohnalek closed 5 years ago
Thank you for the report.
The "missing" field is actually 3 lines below: https://github.com/vanilophp/framework/blob/master/src/resources/views/product/_edit_images.blade.php#L44
And it seems to be working on all instances/tests I know. But since you've been reporting some issues related to this, there's definitely some problem there, so I'd prefer to get more Information to find the problem.
What happens if you remove 'for' => 'prodcut'
from the form definition while having the field below within the form?
{{ Form::hidden('for', 'product') }}
It works with
{{ Form::hidden('for', 'product') }}
https://github.com/vanilophp/framework/blob/master/src/resources/views/product/_edit_images.blade.php#L41
The form in my code was missing the
'for'=>'product'
so I have changed it to the code belowif fixed, please ignore.