I am new to angular 6 ,Here I am trying to reset the form after submitting the data.
Everything works fine but when I reset the form after successful data submit to
Thats great solution but, reactive forms have their own feature to do so.
You can remove validations on specific formGroup/formcontrol by using clearValidators() for reactive forms.
this.formGroup.clearValidators() or
this.formGroup.controls.controlName.clearValidators()
After this, you have to update form control with the removed validator
this.formGroup.controls.controlName.updateValueAndValidity()
This helped me to resolve same issue, hope it helps you too