You should try adding:
<input name="_method" type="hidden" value="DELETE">
into your form. This is what the Laravel 4 form generator does - it just adds a hidden input called _method .
Of course, for the DELETE value in the above example, you can put any other methods
source share