{% if config('DmitsInquiry.config.country') %}
<div class="form-row">
<div class="col-12">
<label class="form-label" for="inquiryCountry"">{{ countryLabel }}</label>
{% set countryConfig = ("dmits.inquiry.custom.countryValues"|trans)|split(',') %}
<select id="inquiryCountry"
class="custom-select"
name="country"
{% if config('DmitsInquiry.config.countryrequired') %}required="required"{% endif %}>
<option disabled="disabled"
selected="selected"
value="">
{{ countryLabel }}
</option>
{% for country in countryConfig %}
<option value="{{ country }}">
{{ country }}
</option>
{% endfor %}
</select>
</div>
</div>
{% endif %}