Uncaught (in promise): Error: Cannot find control with unspecified name attribute Error: Cannot find control with unspecified name attribute code example
Example 1: ERROR Error: No value accessor for form control with unspecified name attribute
Add ngDefaultControl attribute to the element that carries the [(ngModel)] attribute.
Example 2: error TS2304: Cannot find name 'NgForm'.
import { FormsModule } from '@angular/forms';
@NgModule({
---------------
---------------
imports: [
BrowserModule,
FormsModule
]
---------------
---------------
})