{% extends 'affiliates_app/base_affiliate.html' %} {% load static %} {% block title %}Edit Affiliate Profile{% endblock %} {% block content %}
Affiliate Partner Account

Edit Affiliate Profile

Update your personal details, contact information, and payout details used for affiliate communication and commission processing.

{% csrf_token %}
Profile Information
{% for field in form %}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Please check payout details carefully before saving.
Cancel
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}

Profile Update Notes

Important: Please keep your payout details accurate so affiliate commissions can be processed correctly.

If you update your bank account, WhatsApp number, or country, make sure the details match your official payment information.

{% endblock %}