File: D:/HostingSpaces/stafa/stafa.nl/resources/views/site/components/form/textarea.blade.php
@extends('site.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"
onkeyup="this.setAttribute('value', this.value);"
id="{{$formElementCodeName}}"
name="{{$formElementCodeName}}"
dusk="{{$formElementCodeName}}">@if(isset($formElementValue)){{$formElementValue}}@else{{\Input::old($formElementCodeName, '')}}@endif</textarea>
@endsection