{##
# Attribute value (Select) in selectbox mode
#}
{% set fieldId = this.getId() %}
<label class="title" for="{{ fieldId }}">{{ this.getAttributeName() }}</label>
<select
class="form-control"
name="{{ this.getName() }}"
id="{{ fieldId }}"
data-attribute-id="{{ this.attribute.id }}"
{{ this.printTagAttributes(this.getSelectAttributes())|raw }}
>
{% if this.showPlaceholderOption() %}
<option {{ this.printTagAttributes(this.getPlaceholderOptionAttributes())|raw }}disabled="disabled" hidden="hidden" selected="selected" value="">{{ this.getPlaceholderOptionLabel() }}</option>
{% endif %}
{% include this.getOptionsListTemplate() %}
</select>