{% extends 'rental_app/base_rental.html' %} {% block title %}Edit Rental Owner Profile{% endblock %} {% block content %}
Rental Owner Profile

Edit Rental Owner Profile

Update your owner details, business information, contact numbers, and location data so your Rent in Sri Lanka account stays accurate and professional.

Profile Information

Keep your profile up to date. These details help Ensolanka manage your rental owner account properly.

{% csrf_token %}
{% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Updating your full name will also keep the linked user account name synchronized where applicable.
Cancel
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% endblock %}