{% load lucide ui %} {% comment %} The shell every billing form uses: card, fields, cancel + submit. Included with `heading`, `blurb`, `submit_label`, `submit_icon` and `cancel_url`. {% endcomment %}
{% if blurb %}

{{ blurb }}

{% endif %}
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %} {% for field in form %}
{% if field.field.widget.input_type == "checkbox" %} {% else %} {{ field|daisy }} {% endif %} {% if field.help_text %}{{ field.help_text }}{% endif %} {% for error in field.errors %}{{ error }}{% endfor %}
{% endfor %}
{% lucide "arrow-left" size=16 %} Cancel