{% extends 'base2.html.twig' %} {% block title %}Créer Acte Medical{% endblock %} {% block body %}

Nouveau Acte Medical

{{ form_start(form, {'attr': {'class': 'form'}}) }}
{{ form_label(form.nom, 'Libellé', {'attr': {'class': 'form-label'}}) }} {{ form_widget(form.nom, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.nom) }}
{{ form_label(form.date, 'Date', {'attr': {'class': 'form-label'}}) }} {{ form_widget(form.date, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.date) }}
{{ form_label(form.description, 'Description', {'attr': {'class': 'form-label'}}) }} {{ form_widget(form.description, {'attr': {'class': 'form-control', 'rows': 5}}) }} {{ form_errors(form.description) }}
{{ form_label(form.image, 'Image', {'attr': {'class': 'form-label'}}) }} {{ form_widget(form.image, {'attr': {'class': 'form-control', 'rows': 5}}) }} {{ form_errors(form.image) }}
{{ form_end(form) }}
Back to list {% endblock %}