<div class="m_headline">
	<fieldset>
		{% include 'm_components/form/input/text.twig' with {
      label : "title",
      value: title,
      title_text: __("Title", constant('M_TD')),
      class: "widefat"
    } %}
		{% include 'm_components/form/input/editor.twig' with { label: "text", value: text, title_text: __("Description", constant('M_TD')), class: "text-text" } %}
	</fieldset>
</div>
<section>
	{% include 'm_components/form/input/text.twig' with {
    label : "street",
    value: street,
    title_text: __("Street", constant('M_TD')),
    class: "widefat map_street"
  } %}
  	{% include 'm_components/form/input/text.twig' with {
    label : "number",
    value: number,
    title_text: __("Number", constant('M_TD')),
    class: "widefat map_number"
  } %}
	{% include 'm_components/form/input/text.twig' with {
    label : "zip",
    value: zip,
    title_text: __("ZIP", constant('M_TD')),
    class: "widefat map_zip"
  } %}
  	{% include 'm_components/form/input/text.twig' with {
    label : "region",
    value: region,
    title_text: __("Region", constant('M_TD')),
    class: "widefat map_region"
  } %}
	{% include 'm_components/form/input/text.twig' with {
    label : "country",
    value: country,
    title_text: __("Country", constant('M_TD')),
    class: "widefat map_country"
  } %}

	<fieldset>
		<label for="{{ widget.get_field_id(label)|raw }}" class="m_label">Adresse :</label>
		<div class="map_header">
			<input type="text" class="map_text_field"/>
      <input type="hidden" class="map_latlng" id="{{ widget.get_field_id('latlng')|raw }}" name="{{ widget.get_field_name('latlng')|raw }}" value="{{latlng|raw}}" />
			<button class="btn btn__primary search_adress">Search</button>
		</div>
    <div class="adress_list"></div>
	</div>
	<div class="map_container"></div>
</fieldset>

</section>
