I have default FOSUserBundle registration form. I want to add "jabber" field into registration form, which is optional (not required to fill).
User entity:
protected $jabber;
/**
* @ORM\Column(type="string", length="100")
*/
But when i try it, i can't register witout filling "jabber" field. How can i make it unnecessary, to fill that field ?