[Vuejs]-Laravel 8 update form, all field must be updated to run the code. getting error if only single field is updated

0👍

Try this,

<form action="{{url('update/product/'.$product->id)}}" method="POST" enctype="multipart/form-data">
    @method('POST')
    @csrf
    ...
</form>

Leave a comment