27 lines
997 B
Twig
27 lines
997 B
Twig
<div class="blog-write-comment outer-bottom-xs outer-top-xs">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h4>Laissez un commentaire</h4>
|
|
</div>
|
|
<div class="col-md-12">
|
|
{{ form_start(form, {'action': pathComment, 'method': 'POST'}) }}
|
|
<div class="my-custom-class-for-errors">
|
|
{{ form_errors(form) }}
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="info-title" for="exampleInputComments"></label>
|
|
{{ form_row(form.commentaire, {'attr': {'class': 'form-control unicase-form-control', 'style':'height: 221px;'}}) }}
|
|
</div>
|
|
<div class="outer-bottom-small m-t-20" id="some-custom-id">
|
|
{{ form_row(form.save, {'attr': {'class': 'btn-upper btn btn-primary checkout-page-button'}}) }}
|
|
</div>
|
|
|
|
{{ form_end(form) }}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|