I have been attempting to create a specific layout by iterating through two arrays
However, the output I am receiving from the ng-repeats does not match my desired view
Below is the current code that I am working with:
$scope.properties = ["First name", "Last name"];
$scope.labels = ["john", "doe"];
//jade
.col-md-12
.col-md-6(ng-repeat="property in properties")
label {{ property }}
.col-md-6(ng-repeat="label in labels")
{{ label }}