snipe_it/resources/views/blade/input/textarea.blade.php
2025-02-10 16:43:39 -08:00

9 lines
166 B
PHP

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