Textarea Settings

Label Setting

You can easily customize the label of input, you can change it in this line of code:

```handlebars
<label for="message" class="text-[#1A1236] dark:text-gray-100 ">Message</label>
```

Placeholder Setting

You can easily customize the placeholder of input, you can change it in this line of code:

```handlebars
<textarea rows="5" name="message" id="message" placeholder="Your message" required class="mt-[10px] bg-gray-200 dark:bg-white rounded-[4px] w-full"></textarea>
```

Last updated