{{ 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')
{{ trans('entities.pages_md_editor') }}
@if(config('services.drawio'))  |  @endif  | 
{{ trans('entities.pages_md_preview') }}
@if($errors->has('markdown'))
{{ $errors->first('markdown') }}
@endif @endif