Assuming the username FormControl has been configured with a minLength validator, how can you set up an error display in the following reactive forms markup for the username field?
<form [formGroup]="form">
<input type="text" formControlName="username" />
...
</form>