{% extends "store/base.html" %} {% load static %} {% block title %} Add Product {% endblock title %} {% block content %}

Update Product

{% csrf_token %}
{{ form.name }}
{{ form.name.errors }}
{{ form.category }}
{{ form.category.errors }}
{{ form.description }}
{{ form.description.errors }}
{{ form.quantity }}
{{ form.quantity.errors }}
{{ form.price }}
{{ form.price.errors }}
{{ form.expiring_date }}
{{ form.expiring_date.errors }}
{{ form.vendor }}
{{ form.vendor.errors }}
{% endblock content %}