Skip to content

Instantly share code, notes, and snippets.

@avinashseth
Created November 15, 2018 09:01
Show Gist options
  • Select an option

  • Save avinashseth/fad2a582b1d9ee83e50d27ed79ec7e6d to your computer and use it in GitHub Desktop.

Select an option

Save avinashseth/fad2a582b1d9ee83e50d27ed79ec7e6d to your computer and use it in GitHub Desktop.
<div *ngIf="!myForm.controls.firstName?.valid &&
(myForm.controls.firstName?.dirty ||
myForm.controls.firstName?.touched)" class="alert alert-danger">
<div [hidden]="!myForm.controls.firstName.errors.required">
First Name is required
</div>
<div [hidden]="!myForm.controls.firstName.errors.minlength">
First Name Minimum Length is
{{myForm.controls.firstName.errors.minlength?.requiredLength}} </div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment