{% extends "WebBundle::layout.html.twig" %} {% set subtitle = "Change password" %} {% set og_description = "Change password" %} {% set og_type = "null" %} {% set og_image = "null" %} {% set keywords = "null" %} {% block title %}Change password{% endblock %} {% trans_default_domain 'FOSUserBundle' %} {% block body %}
{{app.user.name}}
My Profile Edit Profile My Subscription {% if app.user.type == "email" %} Change password {% endif %} Logout

Change Password


{{ form_start(form, { 'action': path('fos_user_change_password'), 'attr': { 'class': 'fos_user_change_password' } }) }}
{{form_widget(form.current_password,{"attr":{"class":"form-control","placeholder":"Current password"}})}} {{form_errors(form.current_password)}}
{{form_widget(form.plainPassword.first,{"attr":{"class":"form-control","placeholder":"New password"}})}} {{form_errors(form.plainPassword.first)}}
{{form_widget(form.plainPassword.second,{"attr":{"class":"form-control","placeholder":"Repeat new password"}})}} {{form_errors(form.plainPassword.second)}}
{{ form_end(form) }}
{% endblock %}