I am having trouble finding out how to mark all form\'s fields as touched. The main problem is that if I do not touch fields and try to submit form - validation error in not
Looping through the form controls and marking them as touched would also work:
for(let i in this.form.controls) this.form.controls[i].markAsTouched();