{% extends "base.html" %} {% load static %} {% block title %}Add Product — {{ vendor.store_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block body %}
← Back to Dashboard

Add Product

Add a product to your store. Keep it simple — the AI will handle finding it for customers.

Product usage: {{ product_count }}/{{ product_limit }} {% if at_product_limit %} (Limit reached) {% else %} ({{ remaining_slots }} slot{{ remaining_slots|pluralize }} left) {% endif %}

{% if at_product_limit %}

You have reached your product limit of {{ product_limit }} products.

Delete an existing product from your dashboard to add a new one.

{% endif %} {% if errors %}
{% for err in errors %}

{{ err }}

{% endfor %}
{% endif %}
{% csrf_token %}
1

Product Details

2

Categorization

Helps AI match your product to searches
3

Product Images

Upload one or more images. The first image will be the primary display image.

Click to upload or drag & drop
PNG, JPG, WEBP up to 5 MB each
Cancel
{% endblock %}