Is there anyway I could access form controller from scope without knowing what what user define for form name.
Normally, we would access the form controller this way:
$form['register_form']
However, I am looking for way that can access to the form controller without knowing the form name. Example:
$form[$scope.form_name]
I assume there's reference to form name or form controller from $scope itself.