snipe-it/resources/views/blade/input/textarea.blade.php

10 lines
166 B
PHP
Raw Normal View History

2025-01-13 16:34:12 -08:00
@props([
'value' => '',
'rows' => 10,
])
<textarea
{{ $attributes->merge(['class' => 'form-control']) }}
rows="{{ $rows }}"
>{{ $value }}</textarea>