[Solved] Handle bar nested condition error


{{#each array}}
   {{#if conditoin}}
        ...   
   {{else}}
     {{#if condition}}
            ....
     {{/if}}
            ...
     {{#if condition}}
            ...
     {{/if}}
   {{/if}}
{{/each}}

so this is my nested condition but in the first closing if under else the error was throw Unexpected closing template tag {{/if}}

solved now there was a problem due to i open a div in another IF and close it in another If instead