Detalles

{!! Form::label('fiscal_reason', trans('general.nombre')) !!} {!! Form::text('fiscal_reason', null, ['class' => 'form-control']) !!} @if ($errors->has('fiscal_reason')) {{ $errors->first('fiscal_reason') }} @endif
{!! Form::label('cif', trans('general.cif')) !!} {!! Form::text('cif', null, ['class' => 'form-control']) !!} @if ($errors->has('cif')) {{ $errors->first('cif') }} @endif
{!! Form::label('fiscal_address', 'Direccion') !!} {!! Form::text('fiscal_address', null, ['class' => 'form-control']) !!} @if ($errors->has('fiscal_address')) {{ $errors->first('fiscal_address') }} @endif
{!! Form::label('comment', trans('general.comment')) !!} {!! Form::textarea('comment', null, ['class' => 'form-control', 'rows' => '3']) !!} @if ($errors->has('comment')) {{ $errors->first('comment') }} @endif
@if(Auth::user()->role->role_permission('delete_users'))

Embarcación

{!! Form::label('boats[]', 'Embarcaciones') !!} {{ Form::select('boats[]', [], null, ['class' => 'form-control', 'id' => 'boats', 'multiple' => 'multiple','required' => 'required']) }}
@endif
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}