@extends(layoutTenant()) @section('content')

Editar Setor

{!! Form::model($category, ['url'=>routeTenant('setor.update', [$category->id]),'method' => 'PUT']) !!}
{!! Form::label('Name', 'Nome:') !!} {!! Form::text('name', null, ['class'=>'form-control']) !!}
{!! Form::submit('Salvar Setor', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection