method field
Method field in Laravel provides the missing support for the requests like PATCH and DELETE.
{{ method_field('PATCH') }}
// This returns
<input type="hidden" name="_method" value="PATCH">
copy