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>
```
Make sure that the "FOR" value of the label tag and the "ID" value of the input tag have the same value

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