{{#if errors}}
{{#each errors}}
<div class="alert alert-danger">{{msg}}</div>
{{/each}}
{{/if}}
Above code will work if only I have a msg object in my errors array. It won't work if I have just an errors arary. I've tried {{errors}} and {{this}} and expect my array values but no luck. Any help?