{{ csrf_field() }}
{{--Header Bar--}}
{{--Title input--}}
@include('form/text', ['name' => 'name', 'placeholder' => trans('entities.pages_title')])
{{--Editors--}}
{{--WYSIWYG Editor--}}
@if(setting('app-editor') === 'wysiwyg')
@if($errors->has('html'))
{{ $errors->first('html') }}
@endif
@endif
{{--Markdown Editor--}}
@if(setting('app-editor') === 'markdown')
@if($errors->has('markdown'))
{{ $errors->first('markdown') }}
@endif
@endif