<div ng-controller="ctrl1">
<form name="form1" ng-submit="submitForm()">
<input type="text" name="email" />
</form>
</div>
<div ng-controller="ctrl2">
<button> Submit </button>
</div>
In this scenario, I am seeking a way to trigger the form submission action from ctrl2 for a form that exists within ctrl1.
What is the best approach to accomplish this using AngularJS?