{% extends 'base.html' %} {% load static %} {% block title %}Company Profile{% endblock %} {% block content %}

Company Profile

{% csrf_token %}
Company Information
{{ form.company_name }} {% if form.company_name.errors %}
{{ form.company_name.errors }}
{% endif %}
{{ form.company_logo }} {% if profile.company_logo %}
Current Logo
{% endif %} {% if form.company_logo.errors %}
{{ form.company_logo.errors }}
{% endif %}
{{ form.favicon }} {% if profile.favicon %}
Current Favicon
Current favicon {{ profile.favicon.name|slice:":30" }}
{% else %}
No favicon uploaded
{% endif %} {% if form.favicon.errors %}
{{ form.favicon.errors }}
{% endif %} Upload a .ico, .png, or .jpg file (recommended size: 32x32px). This will appear in browser tabs.
{{ form.address }} {% if form.address.errors %}
{{ form.address.errors }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.website }} {% if form.website.errors %}
{{ form.website.errors }}
{% endif %}
Business Details
{{ form.tax_id }} {% if form.tax_id.errors %}
{{ form.tax_id.errors }}
{% endif %}
{{ form.business_registration }} {% if form.business_registration.errors %}
{{ form.business_registration.errors }}
{% endif %}
System Settings
{{ form.default_currency }} {% if form.default_currency.errors %}
{{ form.default_currency.errors }}
{% endif %}
{{ form.timezone }} {% if form.timezone.errors %}
{{ form.timezone.errors }}
{% endif %}
Back
{% endblock %}