Related questions
How to set a class attribute to a Symfony2 form input
How can I set the HTML class attribute to a form <input> using the FormBuilder in Symfony2 ?
Something like this:
->add('birthdate', 'date',array(
'input' => 'datetime',
'widget' => 'single_text',
'attr' => array(
'class' => …
Symfony2 file upload step by step
I am still learning Symfony2 and don't understand how to upload a file.
Don't worry, I've already checked the documentation. It's really good, but my problem isn't explained in any tutorial.
I am looking for guidance on how to upload …