I am trying to embed collection of Tag forms to Service form, according to this tutorial. Tag and Service entities have many-
Tag
Service
Maybe you forgot in the __construct() of Service class and Tag class to initialize $tagList and $serviceList like this ?
__construct()
$this->tagList = new ArrayCollection();
$this->serviceList = new ArrayCollection();