Laravel错误:RouteCollection.php第218行中的MethodNotAllowedHttpException

时间:2016-11-25 21:36:32

标签: laravel laravel-4 eloquent

我试图让客户更新他们已注册的帐户。他们通过验证 Registration_Code 进行注册,现在一切正常,但是当我尝试填写表格并保存时,我得到 MethodNotAllowedHttpException 错误。

按照以下代码

routes.php文件

enter image description here

Controller.php这样

enter image description here

注册视图:工作正常

enter image description here

客户预填表格:保存后我得 MethodNotAllowedHttpException

enter image description here

1 个答案:

答案 0 :(得分:0)

表单操作和路径http请求不匹配一个是PUT,而另一个是POST

POST用于创建,您的路线说:

Route::post

PUT可用于创建和更新