Sometimes you need remove label from forms in symfony. How to do this? It`s easy, just add:
publicfunctionconfigure(){$this->widgetSchema->setLabel('field', false);
}
public function configure() { [...] $this->widgetSchema->setLabel('content', false); [...]}