Textarea Component - LaraCoreKit

Textarea component for multi-line text input. Resizable text area with character count for Laravel apps.

Textarea

Multi-line text input

Preview

View Code
<div>
    <label class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
        Description
    </label>
    <textarea rows="4" 
              placeholder="Enter your description..." 
              class="w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent bg-white dark:bg-gray-700 text-gray-900 dark:text-white placeholder-gray-400 dark:placeholder-gray-500 resize-vertical"></textarea>
</div>