{% if shippingZones is not defined %} {% set shippingZones = craft.commerce.getShippingZones().getAllShippingZones() %} {% endif %} {% if currentCurrency is not defined %} {% set currentCurrency = craft.commerce.getPaymentCurrencies().primaryPaymentCurrency %} {% endif %} {% if destination is not defined %} {% set destination = false %} {% endif %} {# Header #}
{# Remove #}
{# Fields #}
{# Destination #}
{# Delivery Time #}
{% if destination and destination.getErrors('deliveryTime') %}
{# Heroicon name: solid/exclamation-circle #}
{% endif %}
{% if destination %} {% for error in destination.getErrors('deliveryTime') %}

{{ error }}

{% endfor %} {% endif %}
{# Primary Rate #}
{{ craft.app.locale.getCurrencySymbol(currentCurrency.iso) }}
{{ currentCurrency.iso }}
{% if destination and destination.getErrors('primaryRate') %}
{# Heroicon name: solid/exclamation-circle #}
{% endif %}
{% if destination %} {% for error in destination.getErrors('primaryRate') %}

{{ error }}

{% endfor %} {% endif %}
{# Secondary Rate #}
{{ craft.app.locale.getCurrencySymbol(currentCurrency.iso) }}
{{ currentCurrency.iso }}
{% if destination and destination.getErrors('secondaryRate') %}
{# Heroicon name: solid/exclamation-circle #}
{% endif %}
{% if destination %} {% for error in destination.getErrors('secondaryRate') %}

{{ error }}

{% endfor %} {% endif %}