{!! Form::button('Send Notification', ['id' => 'web_notification', 'class' => 'btn btn-primary form-control']) !!}
    
        
        
        
        
        
        
            {!! Form::label('sub_title', 'Subtitle') !!}
            {!! Form::text('sub_title', NULL, ['class' => 'form-control']) !!}
        
        
        
            {!! Form::label('article_author_id', 'Article author id') !!}
            {!! Form::select('article_author_id', $article_authors, NULL, ['class' => 'form-control', 'id' => 'article_authors', 'placeholder' => 'Select an Author...']) !!}
        
     
    
        
        
            {!! Form::label('article_type_id', 'Article type') !!}
            {!! Form::select('article_type_id', $article_types, NULL, ['class' => 'form-control', 'id' => 'article_type', 'placeholder' => 'Select a Type...']) !!}
        
        
        
            {!! Form::label('article_category_id', 'Article Categories') !!}
            {!! Form::select('article_category_id', $article_categories, NULL, ['class' => 'form-control', 'id' => 'article_category_id', 'placeholder' => 'Select a Category...']) !!}
        
        
     
 
{!! Form::hidden('slug', NULL, ['id' => 'slug']) !!}
{!! Form::button(((isset($article) && $article->comment_system == '1') || !isset($article) ? 'Comments Enabled' : 'Comments Disabled'), ['id' => 'comment_system_button', 'class' => 'btn btn-block ' . ((isset($article) && $article->comment_system == '1') || !isset($article) ? 'btn-primary' : 'btn-danger')]) !!}
    {!! Form::hidden('comment_system', NULL, ['id' => 'comment_system']) !!}
    {!! Form::label('content', 'Content') !!}
    {!! Form::textarea('content', NULL, ['class' => 'form-control']) !!}
    
        
        
            {!! Form::label('meta_description', 'Meta Description') !!}
            {!! Form::textarea('meta_description', NULL, ['id' => 'meta_description', 'class' => 'form-control', 'maxlength' => '200', 'rows' => '3']) !!}
        
     
    
        
        
            {!! Form::label('meta_keywords', 'Meta Keywords') !!}
            {!! Form::textarea('meta_keywords', NULL, ['class' => 'form-control', 'rows' => '3']) !!}
        
     
 
    {!! Form::label('image_list[script][source]', 'Script image') !!}
    {!! Form::textarea('image_list[script][source]', isset($article->script_image->source) ? $article->script_image->source : NULL, ['class' => 'form-control', 'rows' => '3']) !!}
    
        
        
            {!! Form::label('image_list[script][caption]', 'Script Caption') !!}
            {!! Form::text('image_list[script][caption]', isset($article->script_image->caption) ? $article->script_image->caption : NULL, ['class' => 'form-control']) !!}
        
     
    
        
        
            {!! Form::label('image_list[script][alternate_text]', 'Script Alternate text') !!}
            {!! Form::text('image_list[script][alternate_text]', isset($article->script_image->alternate_text) ? $article->script_image->alternate_text : NULL, ['class' => 'form-control']) !!}
        
     
 
@include('admin.partials.image_cropping.element', [
    'name' => 'image_list[article][source]',
    'source' => isset($article->article_image->source) ? $article->article_image->source : '',
    'height' => '361',
    'width' => '643',
    'file_manager_modal' => TRUE
])
    
        
        
            {!! Form::label('image_list[article][caption]', 'Image Caption') !!}
            {!! Form::text('image_list[article][caption]', isset($article->article_image->caption) ? $article->article_image->caption : NULL, ['class' => 'form-control','id' => 'img-caption']) !!}
        
     
    
        
        
            {!! Form::label('image_list[article][alternate_text]', 'Image Alternate text') !!}
            {!! Form::text('image_list[article][alternate_text]', isset($article->article_image->alternate_text) ? $article->article_image->alternate_text : NULL, ['class' => 'form-control']) !!}
        
     
 
    
        
        
            {!! Form::button('Preview Article', ['class' => 'btn btn-primary form-control', 'id' => 'preview']) !!}
        
     
    
        
        
            {!! Form::submit($submit_title, ['class' => 'btn btn-primary form-control']) !!}
        
     
 
    
        
            
                
                
                
                    ![prev-img]() 
                    
                
                
                    By 
                    
                
                
             
         
     
 
@include('admin.partials.reload')
@include('admin.partials.ckeditor.ckeditor')
@push('scripts')
    
@endpush