2023-12-17 15:02:15 +00:00
|
|
|
<textarea component="wysiwyg-input"
|
|
|
|
|
option:wysiwyg-input:text-direction="{{ $locale->htmlDirection() }}"
|
|
|
|
|
id="description_html" name="description_html" rows="5"
|
2025-10-18 13:14:30 +01:00
|
|
|
@if($errors->has('description_html')) class="text-neg" @endif>@if(isset($model) || old('description_html')){{ old('description_html') ?? $model->descriptionInfo()->getHtml() }}@endif</textarea>
|
2023-12-17 15:02:15 +00:00
|
|
|
@if($errors->has('description_html'))
|
|
|
|
|
<div class="text-neg text-small">{{ $errors->first('description_html') }}</div>
|
|
|
|
|
@endif
|