@extends('layouts.app') @section('content')

{{trans('validation.attributes.nota_servico')}}

{!! Layout::openCardForm(array('action' => array($controller::pathMethod('store'),$nota->id), 'class' => "form-horizontal")) !!} @include('contextousuario.notas_fiscais.read-cliente')
{!!Form::label('descricao', trans('validation.attributes.descricao_servico'), array('class' => 'col-md-2 control-label'))!!}
{!!Form::textarea('descricao', $nota->descricao, array('class' => 'form-control','rows'=>'3'))!!}

@include('contextousuario.nfse.read-titulos')
{!! Layout::buttonSubmit("Salvar e continuar") !!}
@if (\App\Services\Permissions\PermissoesService::hasPermission(\App\Services\Permissions\PermissoesService::ACT_Nfse_Excluir, $nota)) {!! \Devguar\OContainer\Frontend\Helpers\LayoutHelperMaterial::buttonDelete($controller::urlMethod('delete', ['id' => $nota->id])) !!} @endif
{!! Layout::closeCardForm() !!}
@stop