{% extends 'Base.html' %} {% load static %} {% block head %} {% endblock %} {% block title %} Shiraz Center {% endblock %} {% block body %}

Edit profile


{% if form.errors %}
There were some errors in your form:
{% endif %}
{% csrf_token %}
{{ form.first_name.label_tag }} {{ form.first_name }}
{{ form.last_name.label_tag }} {{ form.last_name }}
{{ form.profile_picture }}
Profile Picture
Profile picture Square image with a minimum size of 500x500
{{ form.date_of_birth.label_tag }} {{ form.date_of_birth }}
{{ form.phone_number.label_tag }} {{ form.phone_number }}
{{ form.specialty.label_tag }} {{ form.specialty }}
{{ form.gender.label_tag }} {{ form.gender }}
{{ form.address.label_tag }} {{ form.address }}
{% csrf_token %}
{% endblock %}