first commit
This commit is contained in:
3
resources/views/components/textarea.blade.php
Normal file
3
resources/views/components/textarea.blade.php
Normal file
@@ -0,0 +1,3 @@
|
||||
@props(['rows' => 3, 'cols' => 50, 'disabled' => false, 'value' => ''])
|
||||
|
||||
<textarea {{ $disabled ? 'disabled' : '' }} {!! $attributes->merge(['class' => 'border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm']) !!} rows="{{ $rows }}" cols="{{ $cols }}">{{ $value }}</textarea>
|
||||
Reference in New Issue
Block a user