diff --git a/resources/views/components/form/group/textarea.blade.php b/resources/views/components/form/group/textarea.blade.php index 4127288bf..f458b3119 100644 --- a/resources/views/components/form/group/textarea.blade.php +++ b/resources/views/components/form/group/textarea.blade.php @@ -48,6 +48,9 @@ value="{!! $value !!}" placeholder="{{ $placeholder }}" rows="{{ $rows }}" + @if (isset($attributes['v-disabled']) || isset($attributes['v-bind:disabled'])) + :disabled="isset($attributes['v-disabled']) ? $attributes['v-disabled'] : $attributes['v-bind:disabled']" + @endif {{ $attributes->merge($custom_attributes) }} />