{% extends "commerce/_layouts/store-settings" %} {% set selectedTab = 'shipping' %} {% import "_includes/forms" as forms %} {% block content %}

{{ "Shipping"|t('commerce') }}

{{ redirectInput('commerce/store-settings/shipping') }} {{ csrfInput() }} {{ forms.textField({ label: "Shipping Base Rate"|t('commerce'), instructions: "What the shipping cost is for the order."|t('commerce'), id: 'shippingBaseRate', name: 'shippingBaseRate', value: settings.shippingBaseRate ?? 0, class: 'code ltr', errors: settings.getErrors('shippingBaseRate'), required: true, }) }} {{ forms.textField({ label: "Shipping Per Item Rate"|t('commerce'), instructions: "What the shipping cost is for each item."|t('commerce'), id: 'shippingPerItemRate', name: 'shippingPerItemRate', value: settings.shippingPerItemRate ?? 0, class: 'code ltr', errors: settings.getErrors('shippingPerItemRate'), required: true, }) }}
{% endblock %}