--

FormGroup reset() keeps the input with Errors after reset() the form inputs.

After submitting the form in FormGroup. If it validating then I try to reset() the form. But after the reset() form keeps the validation errors in the inputs.

To remove that error, You need to put the below line for each input after reset().

YOUR_FORM.controls.YOUR_FIELD_NAME.setErrors(null);

--

--