<label *ngFor="let control of intakeIngangPartner.controls">
<input
[type]="control.type"
[formControlName]="intakeIngangPartner.formControlName"
[value]="control.value"
/>
{{ control.label }}
</label>
https://stackblitz.com/edit/angular-16-reactive-form-validation-bgyave
I want to use two way binding to set a input to a specific type (radio, text, etc) but when I use it I can select both inputs instead of the default behavior (select one) also the value seems to turn in a string value "true" instead of a boolean true.
Angular 16 Reactive Forms Form Validation example
https://www.bezkoder.com/angular-16-form-validation/