Я пытаюсь открыть несколько вкладок, чтобы редактировать одну и ту же форму. Каждая вкладка содержит одну и ту же форму (с различным идентификатором). Можно ли использовать для этого ngFor! Потому что все формы связаны с одной и той же формой.ты
<mat-tab-group>
<mat-tab *ngFor="let tab of asyncTabs;let i = index; ">
<ng-template mat-tab-label>{{tab.label}}</ng-template>
<form [formGroup]="profileForm" (ngSubmit)="onSubmit()">
<label>
First Name:
<input type="text" formControlName="firstName">
</label>
<label>
Last Name:
<input type="text" formControlName="lastName">
</label>
<button type="submit" [disabled]="!profileForm.valid">Submit</button>
</form>
</mat-tab>
</mat-tab-group>