edit.blade.php 251 Bytes
<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() !!}