{!! Form::button('Send Notification', ['id' => 'web_notification', 'class' => 'btn btn-primary form-control']) !!}
{!! Form::label('published_at', 'Published at') !!}
{!! Form::text('published_at', NULL, ['class' => 'form-control', 'id' => 'published_at']) !!}
{!! Form::label('title', 'Title') !!}
{!! Form::text('title', NULL, ['class' => 'form-control', 'id' => 'title', 'maxlength' => '70']) !!}
{!! Form::label('short_url', 'Short URL') !!}
{!! Form::text('short_url', NULL, ['class' => 'form-control', 'id' => 'short_url']) !!}
{!! Form::hidden('slug', NULL, ['id' => 'slug']) !!}
{!! Form::label('sub_title', 'Subtitle') !!} {!! Form::text('sub_title', NULL, ['class' => 'form-control']) !!}
{!! 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_author_id', 'Article author id') !!} {!! Form::select('article_author_id', $article_authors, NULL, ['class' => 'form-control', 'placeholder' => 'Select an Author...']) !!}
{!! 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']) !!}
{!! Form::label('meta_keywords', 'Meta Keywords') !!} {!! Form::textarea('meta_keywords', NULL, ['class' => 'form-control']) !!}
{!! 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']) !!}
{!! 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']) !!}
{!! 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::submit($submit_title, ['class' => 'btn btn-primary form-control']) !!}
@include('admin.partials.reload') @include('admin.partials.ckeditor.ckeditor') @push('scripts') @endpush