edit.blade.php 251 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 <h1>EDIT DE CATEGORIA</h1> {!! Form::model($categoria, ["route" => 'categoria.edit', "method" => "PUT"]) !!} {!! Form::hidden('id', $categoria->id) !!} @include('categoria.includes.form') {!! Form::submit('ATUALIZAR') !!} {!! Form::close() !!}