{!! 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('telephone', trans('general.telefono')) !!}
{!! Form::text('telephone', null, ['class' => 'form-control']) !!}
@if ($errors->has('telephone'))
{{ $errors->first('telephone') }}
@endif
{!! Form::label('cellphone', trans('general.movil')) !!}
{!! Form::text('cellphone', null, ['class' => 'form-control']) !!}
@if ($errors->has('cellphone'))
{{ $errors->first('cellphone') }}
@endif
{!! Form::label('channel', 'Canal') !!}
{!! Form::text('channel', null, ['class' => 'form-control']) !!}
@if ($errors->has('channel'))
{{ $errors->first('channel') }}
@endif
{!! Form::label('boatTypes', trans('general.tipo')) !!}
{!! Form::select('boattype_id', $boatTypes, null, ['class' => 'form-control']) !!}
@if ($errors->has('boatTypes'))
{{ $errors->has('boatTypes') }}
@endif