{!! Form::label('name', trans('general.nombre')) !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::label('port', trans('general.port')) !!}
{!! Form::select('port_id', $port, null, ['class' => 'form-control']) !!}
@if ($errors->has('port'))
{{ $errors->first('port') }}
@endif