{% include 'lib/alert.twig' %}

Payment Methods

{% include 'lib/rule.twig' %}
{% include 'lib/empty.twig' with { type: 'payment', title: "Let's get you set up!", subtitle: 'Add a payment method' } %}

Billing Address

{% include 'lib/rule.twig' %}

Your billing information must match the information associatied with the credit card making the purchase.

{% for address in addresses %} {% if address.id == user.billing_address_id %} {% include 'lib/address.twig' with { address: address, edit: true, delete: true, redirect: '/account/billing' } %} {% endif %} {% endfor %}
{% include 'lib/forms/address.twig' with { type: 'billing_' } %} {% include 'lib/button.twig' with { label: 'Add Address', onclick: 'this.parentNode.submit()', } %}
{% if addresses|length > 1 %} {% include 'lib/rule.twig' with { text: 'OR' } %} {% for address in addresses %} {% if address.id != user.shipping_address_id %} {% include 'lib/address.twig' with { address: address, edit: true, delete: true, redirect: '/account/billing', set_default: 'billing' } %} {% endif %} {% endfor %} {% endif %}