templates/pages/blocks/form/textarea.html.twig line 1

Open in your IDE?
  1.    {# <input-textarea v-model="getInTouch.{{row.field_name}}"
  2.               placeholder="{{row.field_label}}"
  3.               class="sm:col-span-2"
  4.               error-text="This field is required"></input-textarea> #}
  5. <div class="flex flex-col gap-4 sm:col-span-2">
  6.    <label class="input-wrapp relative block">
  7.      <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> 
  8.      <span class="block absolute pointer-events-none whitespace-nowrap opacity-50  left-8 top-6 duration-200 will-change-transform">{{row.field_label}}</span>
  9.    </label> <!---->
  10. </div>