{# <simple-input v-model="getInTouch.{{row.field_name}}"
:error-show="getInTouchErrors.{{row.field_name}}"
error-text="This field is required"
autocomplete="{{row.field_label}}"
name="{{row.field_name}}[{{row.field_label}}]"
{% if row.field_required %}required{% endif %}
placeholder="{{row.field_label}}"></simple-input> #}
<div class="flex flex-col gap-4">
<label class="input-wrapp relative block">
<input type="text" name="{{row.field_name}}[{{row.field_label}}]" {% if row.field_required %}required{% endif %} placeholder=" " autocomplete="" class="block h-16 md:h-[72px] w-full text-base text-current font-medium px-8 input-border focus-visible:!border-current !outline-none duration-200">
<span class="block absolute pointer-events-none whitespace-nowrap opacity-50 top-1/2 left-8 -translate-y-1/2 duration-200 will-change-transform">{{row.field_label}}</span>
</label> <!---->
</div>