File: D:/HostingSpaces/SBogers10/shop.komma.nl/resources/views/components/form/textarea.blade.php
@extends('components.form.layout.element')
@section('form-element-area-' . $formElementCodeName)
{{-- To prevent space in the text editor we stick the value right after closing the textarea --}}
<textarea class="c-input"
id="{{$formElementCodeName}}"
name="{{$formElementCodeName}}"
data-test="{{$formElementCodeName}}">@if(isset($formElementValue)){{$formElementValue}}@else{{\Illuminate\Support\Facades\Request::old($formElementCodeName, '')}}@endif
</textarea>
@endsection