{% extends "base.html.twig" %} {% block title %}Agent profile edit{% endblock %} {% form_theme agentProfileForm with ['bootstrap_4_layout.html.twig', _self] %} {% block body %}

Agent Profile edit

{% if(agentProfileForm.profile is defined) %}
Agent Profile Configuration

{{ form_start(agentProfileForm) }} {% for row in agentProfileForm.profile %}
{{ form_label(row) }} {{ form_widget(row) }} {{ form_help(row) }}
{% if not loop.last %}
{% endif %} {% endfor %}
{% endif %}
{{ form_end(agentProfileForm) }}
{% endblock body %}