{% extends 'base.html.twig' %} {% block title %}{{ title }} - {{ member.fullName }}{% endblock %} {% block body %}

{{ title }}

Informations de l'objet
{{ form_start(form, {attr: {novalidate: 'novalidate', 'enctype': 'multipart/form-data'}}) }}
{{ form_label(form.title, null, {label_attr: {class: 'form-label required'}}) }} {{ form_widget(form.title) }} {{ form_errors(form.title) }}
{{ form_label(form.description, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.description) }} {{ form_errors(form.description) }}
{{ form_label(form.category, null, {label_attr: {class: 'form-label required'}}) }} {{ form_widget(form.category) }} {{ form_errors(form.category) }}
{{ form_label(form.status, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.status) }} {{ form_errors(form.status) }}
{{ form_label(form.style, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.style) }} {{ form_errors(form.style) }}
{{ form_label(form.period, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.period) }} {{ form_errors(form.period) }}
{{ form_label(form.price, null, {label_attr: {class: 'form-label'}}) }}
{{ form_widget(form.price) }}
{{ form_errors(form.price) }}
{{ form_label(form.condition, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.condition) }} {{ form_errors(form.condition) }}
{{ form_label(form.dimensions, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.dimensions) }} {{ form_errors(form.dimensions) }}
{{ form_label(form.materials, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.materials) }} {{ form_errors(form.materials) }}
{{ form_label(form.images, null, {label_attr: {class: 'form-label'}}) }} {{ form_widget(form.images) }} {{ form_errors(form.images) }}
{{ form_help(form.images) }}
{{ form_rest(form) }}
Annuler
{{ form_end(form) }}
Conseils
Photos de qualité
  • Éclairage naturel optimal
  • Plusieurs angles de vue
  • Détails importants
  • Résolution 800x600px min
{% endblock %}