{{ form.name }}
{% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.category }}
{% if form.category.errors %}
{{ form.category.errors }}
{% endif %}
{{ form.price }}
{% if form.price.errors %}
{{ form.price.errors }}
{% endif %}
{{ form.cost_price }}
{% if form.cost_price.errors %}
{{ form.cost_price.errors }}
{% endif %}
Cost to purchase this item.
{{ form.barcode }}
{% if form.barcode.errors %}
{{ form.barcode.errors }}
{% endif %}
Optional barcode for scanning.
{{ form.quantity }}
{% if form.quantity.errors %}
{{ form.quantity.errors }}
{% endif %}
{{ form.low_stock_threshold }}
{% if form.low_stock_threshold.errors %}
{{ form.low_stock_threshold.errors }}
{% endif %}
Alert when stock falls below this level.
{% if user.role == 'admin' %}
{{ form.is_active }}
{% if form.is_active.errors %}
{{ form.is_active.errors }}
{% endif %}
Inactive products won't appear in sales screens.
{% else %}
{{ form.is_active.as_hidden }}
{% endif %}
{% if user.role == 'admin' %}
{{ form.branch }}
{% if form.branch.errors %}
{{ form.branch.errors }}
{% endif %}
{% else %}
{{ form.branch.as_hidden }}
{% endif %}
{% if form.instance.image %}

{% else %}
![Preview]()
{% endif %}
{{ form.image }}
{% if form.image.errors %}
{{ form.image.errors }}
{% endif %}
Recommended: Square image, 500x500px or larger.
{{ form.description }}
{% if form.description.errors %}
{{ form.description.errors }}
{% endif %}