I gave validation to validate the field, specifying the required one as
<div class="form-group"> <label for="inputEmail" class="col-lg-4 col-lg-offset-1 control-label">Email address</label> <div class="col-lg-4"> <input class="form-control" ng-model="$root.customerDetails.eMail" placeholder="Enter customer email" type="email" required focus value = "{{emailId}}"> </div> </div>
and then I press the submit button, but the check does not work. I can go to the next page without email.
Is there any other way to do a check.
Can someone help me thanks
It should look like this:

source share