How to put add fill-up form if counts of item is more than 1 and if item.product.tag condition met?

Hi,

I would like to add an additional fill-up form on our checkout page if the count in the cart is more than 1 and if item.product.tag condition met.

please see the below sample code:

{%- if item.product.tags contains “SpecialItem” -%}
{% assign viberCount = viberCount | plus: 1 %}
{% assign hasSpecialItem = true %}
{% render ‘questions-lp-class’, index: forloop.index, product: item.product.title, viberCount: viberCount %}
{%- endif -%}

Hoping that you could help me on this.

Thank you in advance.