{{--
{!! Form::label('leave_type_id', 'Leave Type') !!}
{!! Form::select('leave_type_id', $leave_types, null, ['class' => 'form-control']) !!} @if ($errors->has('leave_type_id') || $errors->has('leave_type')) {{ $errors->has('leave_type') ? $errors->first('leave_type') : $errors->first('leave_type_id') }} @endif
--}}
{!! Form::label('name', trans('general.nombre').' '.trans('general.port')) !!} {!! Form::text('name', null, ['class' => 'form-control']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('address', trans('general.localidad')) !!} {!! Form::text('address', null, ['class' => 'form-control']) !!} @if ($errors->has('address')) {{ $errors->first('launch') }} @endif
{!! Form::label('description', trans('general.descripcion')) !!} {!! Form::textarea('description', null, ['class' => 'form-control']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::label('portTypes', trans('general.tipo')) !!}
{!! Form::select('porttype_id', $portTypes, null, ['class' => 'form-control']) !!} @if ($errors->has('portTypes')) {{ $errors->has('portTypes') }} @endif
{!! Form::label('user_id', 'Gerente') !!}
{!! Form::select('user_id', $userSelect, null, ['class' => 'form-control']) !!} @if ($errors->has('user_id')) {{ $errors->has('user_id') }} @endif
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}