import { Component, Input } from '@angular/core'; import { FormControl, ReactiveFormsModule } from '@angular/forms'; import { InputComponent } from '../input/input.component'; @Component({ selector: 'field-name', template: ``, imports: [ReactiveFormsModule, InputComponent], }) export class NameComponent { @Input({ required: true }) control = new FormControl(''); @Input() name = 'name'; @Input() label = 'عنوان'; }