<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>
<fieldset>
    {% include 'm_components/form/input/radio.twig' with {
      label : "side",
      array: side,
      value: "left",
      title_text:  __("Image on the left side", constant('M_TD')),
      class: "widefat"
    } %}
    {% include 'm_components/form/input/radio.twig' with {
      label : "side",
      array: side,
      value: "right",
      title_text:  __("Image on the right side", constant('M_TD')),
      class: "widefat"
    } %}
    {% include 'm_components/form/input/media.twig' with {
      label : "image",
      value: image,
      title:  __("Image", constant('M_TD'))
    } %}

</fieldset>
