{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "My Profile" %} - {{ app_settings.app_name|default:"MASAR CARGO" }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Edit Profile" %}

{% csrf_token %} {{ form.email_verified }} {{ form.phone_verified }}
{% if profile.profile_picture %} {{ user.username }} {% else %}
{% endif %}

{% trans "Update your profile picture" %}

{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.email }}
{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.country_code }} {% if form.country_code.errors %}
{{ form.country_code.errors }}
{% endif %}
{{ form.phone_number }}
{% if form.phone_number.errors %}
{{ form.phone_number.errors }}
{% endif %}
{{ form.profile_picture }} {% if form.profile_picture.errors %}
{{ form.profile_picture.errors }}
{% endif %}

{% trans "Back to Dashboard" %}
{% trans "Account Information" %}
{% trans "Username" %}
{{ user.username }}
{% trans "Role" %}
{% if profile.role == 'SHIPPER' %} {% trans "Shipper" %} {% elif profile.role == 'TRUCK_OWNER' %} {% trans "Truck Owner" %} {% else %} {{ profile.role }} {% endif %}
{% trans "Subscription" %}
{{ profile.get_subscription_plan_display }} {% if profile.subscription_expiry %}
{% trans "Expires on:" %} {{ profile.subscription_expiry }} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}