templates/admin/realisation/_form.html.twig line 1

Open in your IDE?
  1. {{ form_start(form) }}
  2.     {{ form_row(form.name) }}
  3.     {{ form_row(form.description) }}
  4.     {{ form_row(form.position) }}
  5.     {{ form_row(form.pictureFile) }}
  6.     {% if realisation is defined %}
  7.         {% if realisation.pictureFilename %}
  8.             <img src="{{ vich_uploader_asset(realisation, 'pictureFile') }}" loading="lazy" class="img-realisation avant" alt="rĂ©alisation">
  9.         {% endif %}
  10.     {% endif %}
  11.     <button class="btn">{{ button_label|default('enregistrer') }}</button>
  12. {{ form_end(form) }}