{% extends 'base.html' %} {% load form_tags %} {{ field|daisyui }} {% block title %}Business Profile{% endblock %} {% block content %}

Business Profile

← Back
{% load form_tags %}
{% csrf_token %} {% for field in form %}
{{ field|daisyui }} {% for error in field.errors %} {{ error }} {% endfor %}
{% endfor %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
Cancel
{% endblock %}