Not sure if can configure nginx to allow the methods or not, but you can simulate PUT and PATCH by using POST and add the parameter _method with a value of put or patch.
Example:
<form method="post">
<input type="hidden" name="_method" value="put">
Etc..
</form>
I'll second that.
These hidden inputs are added automatically when using the Laravel Collective Forms package.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community