enable formcontrol angular code example
Example 1: disable formcontrol angular
this.form.controls['name'].disable();
Example 2: form changes button enable reactive forms
You can try it with the pristine property like this:
<button type="submit" [disabled]="form.pristine">Save</button>
This property checks if your form has changed since it was loaded.