{!! Form::label('customer_id', 'Cliente') !!}
{!! Form::select('customer_id', $customers, null, ['class' => 'form-control']) !!}
@if ($errors->has('customer_id'))
{{ $errors->first('customer_id') }}
@endif
{!! Form::label('first_name', trans('general.nombre')) !!}
{!! Form::text('first_name', null, ['class' => 'form-control']) !!}
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{!! Form::label('last_name', trans('general.apellido')) !!}
{!! Form::text('last_name', null, ['class' => 'form-control']) !!}
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
{!! Form::label('email', 'Email') !!}
{!! Form::text('email', null, ['class' => 'form-control']) !!}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! Form::label('local_address', trans('general.direccion')) !!}
{!! Form::text('local_address', null, ['class' => 'form-control']) !!}
@if ($errors->has('local_address'))
{{ $errors->first('local_address') }}
@endif
{!! Form::label('telephone', trans('general.movil')) !!}
{!! Form::text('telephone', null, ['class' => 'form-control']) !!}
@if ($errors->has('telephone'))
{{ $errors->first('telephone') }}
@endif
{!! Form::radio('gender', 'M', true) !!}
{!! Form::label('gender', trans('general.masculino'), ['class' => 'margin']) !!}
{!! Form::radio('gender', 'F') !!}
{!! Form::label('gender', trans('general.femenino'), ['class' => 'margin']) !!}