{{ csrf_field() }}
    {{--Header Bar--}}
    
        
            
            
                
                      @icon('more')
                    @icon('check-circle', ['class' => 'text-pos draft-notification svg-icon', ':class' => '{visible: draftUpdated}'])
                    
                 
             
            
         
     
    {{--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