{% extends "@ChillPerson/Person/layout.html.twig" %} {% set activeRouteKey = '' %} {% block title 'Edit a residential address'|trans %} {% block personcontent %}
{% block content %}

{{ block('title') }}

{{ form_start(form) }} {{ form_row(form.startDate) }} {{ form_row(form.endDate) }} {% if residentialAddress.address is not null %} {% if form.address is defined %} {{ form_row(form.address) }} {% block js %} {{ encore_entry_script_tags('mod_input_address') }} {% endblock %} {% block css %} {{ encore_entry_link_tags('mod_input_address') }} {% endblock %} {% endif %} {% endif %} {{ form_row(form.comment) }} {{ form_end(form) }} {% endblock %}
{% endblock %}