{% extends 'admin/base.html.twig' %} {% block title %}Page Blog{% endblock %} {% block description %}Représente la page présentation de votre site{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}

{% if post.image is defined and post.image is not null %} {% endif %}
{{ form_widget(form.image, {'attr':{'class':'form-control input-lg'}}) }}
{{ form_widget(form.title, {'attr': {'class': 'form-control'}}) }}
{{ form_widget(form.introduction, {'attr': {'class': 'form-control'}}) }}
{{ form_widget(form.content, {'attr': {'class': 'form-control'}}) }}
{{ form_end(form) }}
{% endblock %}