PHP Classes

File: templates/form/layout.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Symfony Create Bundle Skeleton   templates/form/layout.html.twig   Download  
File: templates/form/layout.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Symfony Create Bundle Skeleton
Application to create reusable Symfony Bundles
Author: By
Last change:
Date: 4 years ago
Size: 596 bytes
 

Contents

Class file image Download
{% extends 'bootstrap_3_layout.html.twig' %} {# Errors #} {% block form_errors -%} {% if errors|length > 0 -%} {% if form is not rootform %}<span class="help-block">{% else %}<div class="alert alert-danger">{% endif %} <ul class="list-unstyled"> {%- for error in errors -%} {# use font-awesome icon library #} <li><span class="fa fa-exclamation-triangle"></span> {{ error.message }}</li> {%- endfor -%} </ul> {% if form is not rootform %}</span>{% else %}</div>{% endif %} {%- endif %} {%- endblock form_errors %}