mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-28 13:06:13 +00:00
17 lines
403 B
Twig
17 lines
403 B
Twig
{% extends '@ChillPerson/Household/layout.html.twig' %}
|
|
|
|
{% block title 'Edit household address'|trans %}
|
|
|
|
{% block content %}
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
<div>
|
|
{# include vue_address component #}
|
|
{% include '@ChillPerson/Address/_insert_vue_address.html.twig' with {
|
|
binModalStep1: false,
|
|
binModalStep2: false,
|
|
} %}
|
|
</div>
|
|
|
|
{% endblock %}
|