{# app/templates/admin/merchant-detail.html #} {# noqa: fe-004 - Alpine.js x-model bindings incompatible with standard form macros #} {# noqa: fe-008 - Alpine.js x-model bindings incompatible with standard form macros #} {% extends "admin/base.html" %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/headers.html' import detail_page_header %} {% from 'shared/macros/modals.html' import confirm_modal_dynamic %} {% block title %}Merchant Details{% endblock %} {% block alpine_data %}adminMerchantDetail(){% endblock %} {% block content %} {% call detail_page_header("merchant?.name || 'Merchant Details'", request.query_params.get('back', '/admin/merchants'), subtitle_show='merchant') %} ID: | store(s) {% endcall %} {{ loading_state('Loading merchant details...') }} {{ error_state('Error loading merchant') }}

Quick Actions

Edit Merchant

Verification

-

Status

-

Stores

0

Created

-

Basic Information

Merchant Name

-

Description

-

Contact Information

Contact Email

-

Phone

-

Website

-

Business Details

Business Address

-

Tax Number

-

Owner Information

Owner User ID

-

Owner Username

-

Owner Email

-

No Subscription Found

This merchant doesn't have a subscription yet.

Create Subscription

Stores ()

Store Subdomain Status Actions

More Actions

Stores created will be associated with this merchant.

{{ confirm_modal_dynamic( 'deleteMerchantModal', 'Delete Merchant', "'Are you sure you want to delete merchant \"' + (merchant?.name || '') + '\"? This action cannot be undone.'", 'confirmDeleteMerchantStep()', 'showDeleteMerchantModal', 'Continue', 'Cancel', 'danger' ) }} {{ confirm_modal_dynamic( 'deleteMerchantFinalModal', 'Final Confirmation', "'Are you absolutely sure you want to delete \"' + (merchant?.name || '') + '\"?'", 'deleteMerchant()', 'showDeleteMerchantFinalModal', 'Delete Permanently', 'Cancel', 'danger' ) }}
{% endblock %} {% block extra_scripts %} {% endblock %}