I have a form which need to show validation error messages if clicked submit.
Here is a working plunker
// This worked for me. Name is required. // in controller $scope.Save(invalid) { if(invalid) return; // save form }