PATCH and PUT Request Does not Working with form-data
This is a known issue and the workaround suggestion as per the following Github comment is that when sending a PATCH / PUT requests you should do the following: You should send POST and set _method to PUT (same as sending forms) to make your files visible So essentially you send a POST request with … Read more