adamwathan/form

Missing file() method ?

barbuslex opened this issue · 2 comments

Hi,

How can i do to add file enctype to the form ?

Thanks

You can do this:

$formBuilder->open->multipart();

// or

$formBuilder->open->encodingType('multipart/form-data');

It's missing from the docs though, so I should add that, thanks for reminding me!

Thanks ;)