laravel 编辑表单提交注意

1、这里是显示修改表单的页面

2、编辑提交数据post,但是要加上隐藏input框   <input type="hidden" name="_method" value="put">  

运用资源路由(Route::resource),提交到update方法中

如果没有   <input type="hidden" name="_method" value="put">  提交时会报如下错误:

 

原文地址:https://www.cnblogs.com/php08049/p/9241732.html