{% extends 'base.html' %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.contact_type }} {% if form.contact_type.errors %}
{{ form.contact_type.errors.0 }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors.0 }}
{% endif %}
{{ form.address }} {% if form.address.errors %}
{{ form.address.errors.0 }}
{% endif %}

Business Details
{{ form.business_registration_no }} {% if form.business_registration_no.errors %}
{{ form.business_registration_no.errors.0 }}
{% endif %}
{{ form.tax_id }} {% if form.tax_id.errors %}
{{ form.tax_id.errors.0 }}
{% endif %}
{{ form.sst_registered }}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors.0 }}
{% endif %}
Cancel
Tips
  • Fill in complete contact information for better record keeping
  • SST registration is important for tax reporting
  • You can edit this information anytime
{% endblock %}