I am currently in the process of developing an Angular JS application that features a 2-step form. This form essentially consists of one form, but utilizes JavaScript to hide the initial panel and reveal the second panel when the user clicks the 'next' button to proceed to step 2. Although I have implemented 'required' validations on certain fields in step 1, these validations are not triggered when the user clicks the 'next' button; instead, they are only enforced when the user clicks the final 'submit' button at the conclusion of step 2.
I am curious if there is a method to instruct Angular to validate these fields in the form when the 'next' button is clicked?