{% extends 'layouts/base.html' %} {% load static %} {% block title %}{% if object %}Edit Profile{% else %}Create Profile{% endif %} - {{ object.user.get_full_name|default:object.user.username|default:'New Profile' }}{% endblock title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{% if object %}Edit Profile{% else %}Create Profile{% endif %}

{% if object %} Update profile information for {{ object.user.get_full_name|default:object.user.username }} {% else %} Create a new user profile {% endif %}

{% csrf_token %}
Profile Avatar
Upload a profile picture (JPG, PNG, max 5MB)
Personal Information
{% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
{% if form.phone.errors %}
{{ form.phone.errors.0 }}
{% endif %}
{% if form.date_of_birth.errors %}
{{ form.date_of_birth.errors.0 }}
{% endif %}
{% if form.address.errors %}
{{ form.address.errors.0 }}
{% endif %}
Brief description about yourself (max 500 characters)
{% if form.bio.errors %}
{{ form.bio.errors.0 }}
{% endif %}
Professional Information
{% if form.role.errors %}
{{ form.role.errors.0 }}
{% endif %}
{% if form.department.errors %}
{{ form.department.errors.0 }}
{% endif %}
{% if form.employee_id.errors %}
{{ form.employee_id.errors.0 }}
{% endif %}
{% if form.hire_date.errors %}
{{ form.hire_date.errors.0 }}
{% endif %}
Start typing to search for a manager
{% if form.manager.errors %}
{{ form.manager.errors.0 }}
{% endif %}
Cancel
{% endblock content %} {% block extra_js %} {% endblock extra_js %}