templates/artists/edit.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Edit Article{% endblock %}
  3. {% block body %}
  4.  {{ form_start(form) }}
  5.  {{ form_widget(form) }}
  6.  {{ form_end(form) }}
  7.  {% if form.vars.value.image is not null %}
  8.   <img src="{{ asset('images/artists/' ~ form.vars.value.image) }}" />
  9.  {% endif %}
  10. {% endblock %}