{# <input-textarea v-model="getInTouch.{{row.field_name}}"
placeholder="{{row.field_label}}"
class="sm:col-span-2"
error-text="This field is required"></input-textarea> #}
<div class="flex flex-col gap-4 sm:col-span-2">
<label class="input-wrapp relative block">
<textarea name="{{row.field_name}}" {% if row.field_required %}required{% endif %} placeholder=" " class="block h-[160px] resize-none w-full text-base text-blue font-medium py-6 px-8 input-border focus-visible:border-blue !outline-none duration-200"></textarea>
<span class="block absolute pointer-events-none whitespace-nowrap opacity-50 left-8 top-6 duration-200 will-change-transform">{{row.field_label}}</span>
</label> <!---->
</div>