Skip to content

Instantly share code, notes, and snippets.

View brikou's full-sized avatar

Brice BERNARD brikou

  • Nancy, France
View GitHub Profile
<form method="post" action="..." {{ form.enctype }}>
{{ form.errors }}
{% for field in form.visible_fields %}
{{ field.label('My label') }}
{{ field.errors }}
{{ field.widget }}
The ID of this field is: {{ field.id }}
And the value: {{ field.value }}
{% endfor %}
a) Importing the namespace only
<?php
use Symfony\Component\Form
class ContactForm extends Form\Form
{
protected function configure()
{
$this->add(new Form\TextField('subject', array(