前提:Route路由已经设定好:
Route::get('/test','TestController@index');
访问另一个路由,展开视图:
Route::get('/login',function(){return view('login');});
在视图中简单的定义一个表单:
<form action="test" method="post">
<input type='hidden' name="_token" value="{{csrf_token()}}">
用户名:<input type="text" name="user_name"/><br/>
密码:<input type='password' name="password"/><br/>
<button type="submit">登录</button></form>
在上述表单中action的值为test,在进行表单提交的时候报:
MethodNotAllowedHttpException