Is there a way to disable and make all fields non editable (input / mat-select / textfield / option/input/mat-checkbox etc) inside a Form
(input / mat-select / textfield / option/input/mat-checkbox etc)
Create a FormGroup as explained here:
https://angular.io/guide/reactive-forms#add-a-formgroup
Then, grab the formGroup instance programmatically and call .disable() on it, like this:
formGroup
.disable()
this.leaseholderForm.disable()