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