{!! Form::label('user_id', trans('general.usuario')) !!} {{ Form::select('user_id', $socios, null, ['class' => 'form-control'])}} @if ($errors->has('user_id')) {{ $errors->first('user_id') }} @endif
{!! Form::label('document_type_id',trans('general.tipo').' '.trans('general.documento')) !!}
{!! Form::select('document_type_id', $document_types, null, ['class' => 'form-control']) !!} @if ($errors->has('document_type_id') || $errors->has('document_type')) {{ $errors->has('document_type') ? $errors->first('document_type') : $errors->first('document_type_id') }} @endif
{!! Form::label('document', trans('general.documento')) !!} {!! Form::file('document') !!} @if ($errors->has('document')) {{ $errors->first('document') }} @endif
{!! Form::submit(trans('general.save'), ['class' => 'btn btn-success btn-flat']) !!} {{trans('general.cancel')}}