After upgrading to RC5 we began getting this error:
ngModel cannot be used to register form controls with a parent formGroup
directive.
Try using formGroup\
Expanding on @Avenir Çokaj's answer
Being a novice even I did not understand the error message clearly at first.
What the error message indicates is that in your formGroup you have an element that doesn't get accounted for in your formControl. (Intentionally/Accidentally)
If you intend on not validating this field but still want to use the ngModel on this input element please add the flag to indicate it's a standalone component without a need for validation as mentioned by @Avenir above.