I'm working with symfony2, and I have a form with a number of fields, one of them is called video. Could be possible remove that field in the update form but not in the insert form?
(Form) YoutubepostType.php:
$builder->add('tituloVideo')
->add('descripcionVideo')
->add('tagsVideo')
->add('video', 'file', array('required' => false));
Thank you all in advanced.