Remove cols property

This commit is contained in:
Marcus Moore 2025-02-10 16:43:39 -08:00
parent aa14cfe18d
commit 73e010434e
No known key found for this signature in database

View file

@ -1,11 +1,9 @@
@props([ @props([
'value' => '', 'value' => '',
'cols' => 50,
'rows' => 10, 'rows' => 10,
]) ])
<textarea <textarea
{{ $attributes->merge(['class' => 'form-control']) }} {{ $attributes->merge(['class' => 'form-control']) }}
cols="{{ $cols }}"
rows="{{ $rows }}" rows="{{ $rows }}"
>{{ $value }}</textarea> >{{ $value }}</textarea>