{% extends "admin/base.html.twig" %} {% trans_default_domain 'admin' %} {% set title = "Entreprise"|trans ~ ' ' ~ entity.name %} {% block title %}{{ title }}{% endblock %} {% block pageTitle %}{{ title }}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %} {{ form_start(form, {"attr": {"novalidate": "novalidate", "action": app.request.uri, 'id': 'form-' ~ entity.id}}) }}
{% include 'admin/core/form/save/header.html.twig' %}

{{ "Information"|trans }}

{% if form.name is defined %} {{ form_row(form.name) }} {% endif %} {% if form.locale is defined %} {{ form_row(form.locale) }} {% endif %}

{{ "Contact"|trans }}

{% if form.email is defined %} {{ form_row(form.email) }} {% endif %} {% if form.contactLastName is defined %} {{ form_row(form.contactLastName) }} {% endif %} {% if form.contactFirstName is defined %} {{ form_row(form.contactFirstName) }} {% endif %}

{{ "Logo"|trans }}

{% if form.file is defined %} {{ form_row(form.file) }} {% endif %}

{{ "Adresse"|trans }}

{% if form.address.name is defined %} {{ form_row(form.address.name) }} {% endif %} {% if form.address.latitude is defined %} {{ form_row(form.address.latitude) }} {% endif %} {% if form.address.longitude is defined %} {{ form_row(form.address.longitude) }} {% endif %} {% if form.address.address is defined %} {{ form_row(form.address.address) }} {% endif %} {% if form.address.zipCode is defined %} {{ form_row(form.address.zipCode) }} {% endif %} {% if form.address.city is defined %} {{ form_row(form.address.city) }} {% endif %} {% if form.address.department is defined %} {{ form_row(form.address.department) }} {% endif %} {% if form.address.country is defined %} {{ form_row(form.address.country) }} {% endif %} {% if form.address.googleMapUrl is defined %} {{ form_row(form.address.googleMapUrl) }} {% endif %} {% if form.address.googleMapDirectionUrl is defined %} {{ form_row(form.address.googleMapDirectionUrl) }} {% endif %}
{% include 'admin/core/form/save/footer.html.twig' %}
{{ form_end(form) }} {% endblock %}