{% extends 'base.html.twig' %} {% block title %}Edit Profile{% endblock %} {% block body %}

Edit profile

{% for msg in app.flashes('success') %}
{{ msg }}
{% endfor %}

Current picture

{% if profileImage %} Profile picture {% else %}
{{ (app.user.displayName ?? app.user.userIdentifier)|slice(0,1)|upper }}
{% endif %}

Images up to 4MB. JPG or PNG recommended.

{{ form_start(form, {attr: {novalidate: 'novalidate'}}) }}
{{ form_row(form.email) }}
{{ form_row(form.displayName) }}
{{ form_row(form.profileImage) }}

Password change is optional. Provide your current password only if you want to update it.

{{ form_row(form.currentPassword) }}
{{ form_row(form.newPassword) }}
Cancel
{{ form_end(form) }}
{% endblock %}