This may help.
Change you form tag to following code
{{ Form::open(array(
'action' => array('UserController@update', $user->id),
'method' => 'put'
)) }}
{{ From::model($user, [ 'route' => [ 'users.update', $user->id ], 'method' => 'put' ]) }}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community