Javascript – Why doesn't this Angular 16 reactive form return any validation errors?
I am working on a reactive registration form in Angular 16. In componentsregistrationregistration.component.ts I have: import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; @Component({ selector: 'app-registration', templateUrl: './registration.component.html', styleUrls: ['./registration.component.scss'] }) export class…