@
dongbeta Route::post('/reg',array('before' => 'csrf', function() 都是提示
Illuminate \ Session \ TokenMismatchException
不加filter 就可以提交 ,页面用的是
{{ Form::open(array('url' => '/reg')) }}
<dl>
<dt> {{ Form::label('email', 'E-Mail Address') }} </dt>
<dd> {{ Form::text('email') }}</dd>
</dl>
<dl>
<dt> {{ Form::label('password', 'password') }} </dt>
<dd> {{ Form::password('password'); }}</dd>
</dl>
<dl>
<dd> {{ Form::submit('Register!') }}
</dd>
</dl>
{{ Form::close() }}
这个fillable 与表单中的_token有关系吗?