Currently, I am working with a plunker where I am dynamically creating form components based on the model specified in app.ts. However, I am facing an issue where I cannot add formControlName = "name" to the component. In my control-factory.directive.ts file, I am using this.form.addControl(this.model.name, new FormControl()); but I am unsure how to bind the value properly. Can you provide any guidance on this matter?