What is Method Spoofing in Laravel ?
As HTML forms does not supports PUT, PATCH or DELETE request. So, when defining PUT, PATCH or DELETE routes that are called from an HTML form, you will need to add a hidden _method field to the form. The value sent with the _method field will be used as the HTTP request method:
To generate the hidden input field _method, you may also use the method_field helper function:
In Blade template you can write it as below