{!! 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