Is there any way to disable the entire form in angular when using Reactive forms. I know it is possible to make them disable one by one.
this.tempForm = this.fb.group({
m26_type: '',
m26_name: ''
})
this.tempForm.get('m26_type').disable();
Is it possible to disable the whole form rather than make every controller disable separately?