{# app/templates/admin/store-create.html #} {% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header %} {% from 'shared/macros/alerts.html' import error_state %} {% block title %}Create Store{% endblock %} {% block alpine_data %}adminStoreCreate(){% endblock %} {% block content %} {{ page_header('Create New Store', subtitle='Create a store (storefront/brand) under an existing merchant', back_url='/admin/stores', back_label='Back to Stores') }} {# noqa: FE-003 - Custom success message with nested template #}

Store Created Successfully!

{{ error_state('Error Creating Store', error_var='errorMessage', show_condition='errorMessage') }}
Loading merchants...

Parent Merchant

Stores are storefronts/brands under a merchant. Select the parent merchant for this store.

The merchant this store belongs to

Store Information

Unique identifier (uppercase, 2-50 chars)

.example.com

Lowercase letters, numbers, and hyphens only

Platform Access

Select which platforms this store should have access to. Each platform can have different settings and features.

No platforms available. Create a platform first.

Select at least one platform for the store to be accessible.

Marketplace URLs (Optional)

CSV feed URLs for product import from Letzshop marketplace

{% endblock %} {% block extra_scripts %} {% endblock %}