changePassword.html.twig 823 B

123456789101112131415161718192021222324252627
  1. {#
  2. This file is part of the Sonata package.
  3. (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  4. For the full copyright and license information, please view the LICENSE
  5. file that was distributed with this source code.
  6. #}
  7. {% extends "SonataUserBundle:Profile:action.html.twig" %}
  8. {% block sonata_profile_content %}
  9. {{ form_errors(form) }}
  10. <div class="panel panel-default">
  11. <div class="panel-heading">
  12. <h3 class="panel-title">{{ "title_user_edit_password" | trans({}, 'SonataUserBundle') }}</h3>
  13. </div>
  14. <div class="panel-body">
  15. {% block fos_user_content %}
  16. {% include "SonataUserBundle:ChangePassword:changePassword_content.html.twig" %}
  17. {% endblock fos_user_content %}
  18. </div>
  19. </div>
  20. {% endblock sonata_profile_content %}