What's the purpose of using method_field('PUT') or <input type="hidden" name="_method" value="PUT" /> In Laravel?

Viewed 7039

If I want to make an update request then i have to use?

{{ method_field('PUT') }}

Or

<input type="hidden" name="_method" value="PUT">
1 Answers
Related