I want to upload image to an existing item at the moment. These are the attributes of my field:
[
'label' => __('admin.product_image'),
'name' => "product_image",
'type' => 'image',
'upload' => true,
'disk' => 'uploads'
],
In my form request class:
'product_image' => 'nullable|file',
If I swtich off validation and I dd my 'product_image' from request I get this:
Please can someone help me to find what I'm missing?