Hi
I am usng Reactive Form . I want to sho Valodation messages on change of field
form = new FormGroup({
name: new FormControl('', [Validators.required, Validators.minLength(3)]),
email: new FormControl('', [Validators.required, Validators.email])
)
});
Thanks