{{ form_start(respondForm, { 'attr': {'class': 'form-horizontal form-modal-comment'} })}}
{{ form_widget(respondForm.idparent, { 'attr': { 'class': 'form-control', 'value': '0' }}) }} {{ form_errors(respondForm.idparent) }}
{{ form_widget(respondForm.author, { 'attr': { 'class': 'form-control', 'placeholder': 'Entrer votre nom', 'pattern': '^[^ ]{2}.*$' }}) }} {{ form_errors(respondForm.author) }}
{{ form_widget(respondForm.content, { 'attr': { 'maxlength':'300', 'class': 'form-control', 'pattern': '^[^ ]{2}.*$', 'placeholder': 'Entrer votre commentaire' }}) }} {{ form_errors(respondForm.content) }}
{{ form_end(respondForm)}}