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