{% extends "_market/_layouts/main" %} {% set title = 'Payments'|t('market') %} {% set breadcrumbs = [ { url: url('market/settings'), label: 'Settings'|t('market') }, { url: url('market/settings/payments'), label: title } ] %} {% block main %}
{% include '_market/settings/_nav.html' %}

Payment status

We take payments on your behalf using Stripe. Please note that you must connect your Stripe account here before you will be able to sell anything.

{% if currentVendor.stripeUserId %} {# Active #}
{# Heroicon name: solid/check-circle #}

Payments are active

Customers can purchase your products and you will get paid directly into your connected Stripe account.

{{ csrfInput() }} {{ actionInput('market/stripe/disconnect') }}
{% else %} {# Inactive #}
{# Heroicon name: solid/exclamation #}

Payments are inactive

Customers cannot purchase your products and you will not get paid.

{% endif %}
{% endblock %}