I\'m using Symfony2. I have an entity Post that has a title and a picture field.
My problem : Everything is fine when I create a post, I have my picture e
I solved the problem setting data_class to null as follows:
data_class
null
public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('title') ->add('picture', 'file', array('data_class' => null) ); }