Gabriel Villalon
Gabriel Villalon
Comparte:

Metodo Update

Hola, como estan?, tengo un problema con el metodo update en un formulario que deseo editar, el error que me arroja es este. 
Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException
The PUT method is not supported for this route. Supported methods: GET, HEAD.
en mi archivo web.php tengo esto
 Route::put('escrutinio/{escrutinio}','EscrutinioController@update')->name('escrutinio.update') 

y en el boton enviar tengo esto 
 
 
{!! Form::model([$datos, 'route' => 'escrutinio.update']) !!}
       @csrf
       @include('escrutinio.partials.form-edit')
       @method('PUT')                           
{!! Form::close() !!} 

Alguien me podria ayudar?