{% extends 'layout/base.twig' %} {% set title = 'My Profile' %} {% set pageTitle = 'My Profile' %} {% set pageDescription = 'Manage your account settings and preferences' %} {% set pageIcon = 'fas fa-user-circle' %} {% block content %}
{% if avatar.type == 'uploaded' or avatar.type == 'gravatar' %} {{ avatar.alt }} {% else %}
{{ avatar.initials }}
{% endif %}
{% if avatar.type == 'uploaded' %} {% elseif avatar.type == 'gravatar' %} {% else %} {% endif %}

{{ user.full_name|default(user.username) }}

@{{ user.username|default('') }}

{{ role_badge(user.role|default('user')) }}
Member Since
{{ (user.created_at|default('now'))|date('M Y') }}
Status
Active

Profile Information

Update your personal details and account information

Profile Picture

{% if avatar.type == 'uploaded' or avatar.type == 'gravatar' %} {{ avatar.alt }} {% else %}
{{ avatar.initials }}
{% endif %}
{% if avatar.type == 'uploaded' %} {% elseif avatar.type == 'gravatar' %} {% else %} {% endif %}
{{ csrf_field() }}
{% if avatar.type == 'uploaded' %}
{{ csrf_field() }}
{% endif %}
{% if avatar.type == 'uploaded' %} Using uploaded image {% elseif avatar.type == 'gravatar' %} Using Gravatar from {{ user.email|default('') }} {% else %} Using initials (upload an image or set up Gravatar) {% endif %}
{% if avatar.type != 'gravatar' and user.email %} {% endif %}
{{ csrf_field() }}
{% if user.email_verified %}

Email verified

{% else %}

Email Not Verified

Verify your email to unlock all features

Resend
{% endif %}

Username cannot be changed

Account Information

{{ (user.created_at|default('now'))|date('F j, Y') }}

{{ user.last_login ? user.last_login|date('M j, Y g:i A') : 'Never' }}

{% if user.role != 'admin' %} {% endif %}
{% endblock %}