The Symfony form component is a standalone library that can be used outside of Symfony projects.
I am creating a form in the following manner: $form = $this->createFormBuilder($breed) ->add('species', 'entity', array( …
forms symfony default symfony-formsI have a form like below: class ItemType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder // ... ->…
symfony-forms symfony-2.3I check some validation in my controller. And I want to add error to specific element of my form on …
php validation symfony symfony-formsIn Twig template I check if a field has an error like this: {% if form.points.get('errors') is not …
symfony twig symfony-formsHow should I render read-only fields using Symfony form component? This is how I am trying to do that to …
symfony symfony-formsI've got a form with extra fields added with the option mapped to false. But when I try to validate …
symfony validation symfony-formsI am using FOSUserBundle for managing my users. In order to register user, I reused the form of the bundle …
symfony twig symfony-forms fosuserbundleI am building a project in Symfony 2.3 using Twig. I want to add a class to the form row block. …
symfony twig symfony-formsI'm trying to do a simple form to add an activity with a name and a color. So I want …
php symfony symfony-formsI have this view: //login.html.twig <!DOCTYPE html> <html> <head> <meta http-equiv="…
symfony symfony-forms symfony-2.1