X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/f110b8ba20232e0ceeb67390f8e672431868d32d..9435311a62e45dc4e38ad063f1c846774c02328f:/Resources/views/form/form_div_layout.html.twig diff --git a/Resources/views/form/form_div_layout.html.twig b/Resources/views/form/form_div_layout.html.twig index 7f73c51..34af91e 100644 --- a/Resources/views/form/form_div_layout.html.twig +++ b/Resources/views/form/form_div_layout.html.twig @@ -294,16 +294,16 @@ {%- endblock repeated_row -%} {%- block form_row -%} - <div> + <div class="row"> {{- form_label(form) -}} - <section> + <div> {{- form_widget(form) -}} {%- if errors|length > 0 -%} - <div class="error"> + <div class="message error"> {{- form_errors(form) -}} </div> {%- endif -%} - </section> + </div> </div> {%- endblock form_row -%} @@ -337,6 +337,11 @@ {%- if form_method != method -%} <input type="hidden" name="_method" value="{{ method }}" /> {%- endif -%} + {%- if errors|length > 0 -%} + <header class="message error"> + {{- form_errors(form) -}} + </header> + {%- endif -%} {%- endblock form_start -%} {%- block form_end -%}