{{--
--}} {{-- {!! Form::label('post_comment','Enable Comments on Blog post?') !!}--}} {{-- {!! Form::checkbox('setting[_blog_post_comment]' , null , (isset($siteSetting['_blog_post_comment'])) ? $siteSetting['_blog_post_comment'] : 0, ['id' => 'post_comment']) !!}--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::label('post_comments_show_date','Show Date') !!}--}} {{-- {!! Form::checkbox('setting[_blog_post_comments_show_date]' , null , (isset($siteSetting['_blog_post_comments_show_date'])) ? $siteSetting['_blog_post_comments_show_date'] : 0) !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('post_comments_order_by','Default Order') !!}--}} {{-- {!! Form::select('setting[_blog_post_comments_order_by]' , [--}} {{-- 'desc' => 'Newest (Top) Oldest (Bottom)',--}} {{-- 'asc' => 'Newest (Bottom) Oldest (Top)',--}} {{-- ] , (isset($siteSetting['_blog_post_comments_order_by'])) ? $siteSetting['_blog_post_comments_order_by'] : null ,['class' => 'form-control']) !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('post_comments_without_approval','Post Comments without Admin Approval') !!}--}} {{-- {!! Form::checkbox('setting[_blog_post_comments_without_approval]' , null , (isset($siteSetting['_blog_post_comments_without_approval'])) ? $siteSetting['_blog_post_comments_without_approval'] : 0) !!}--}} {{--
--}} {{--
--}}
{!! Form::label('_blog_post_title_font_size','Post title font size') !!} : {!! Form::select('setting[_blog_post_title_font_size]' , \App\SiteSetting::post_font_sizes() , (isset($siteSetting['_blog_post_title_font_size'])) ? $siteSetting['_blog_post_title_font_size'] : 0) !!}
{!! Form::label('post_show_featured_img','Show Featured Image') !!} {!! Form::checkbox('setting[_blog_post_show_featured_img]' , null , (isset($siteSetting['_blog_post_show_featured_img'])) ? $siteSetting['_blog_post_show_featured_img'] : 1) !!}
{!! Form::label('_blog_post_show_date','Show Blog Date') !!} {!! Form::checkbox('setting[_blog_post_show_date]' , null , (isset($siteSetting['_blog_post_show_date'])) ? $siteSetting['_blog_post_show_date'] : 1) !!}
{!! Form::label('_blog_post_show_author','Show Blog Author') !!} {!! Form::checkbox('setting[_blog_post_show_author]' , null , (isset($siteSetting['_blog_post_show_author'])) ? $siteSetting['_blog_post_show_author'] : 1) !!}
{!! Form::label('post_breadcrumb','Post Breadcrumb') !!} {!! Form::checkbox('setting[_blog_post_breadcrumb]' , null , (isset($siteSetting['_blog_post_breadcrumb'])) ? $siteSetting['_blog_post_breadcrumb'] : 0, ['id' => 'post_breadcrumb']) !!}
{!! Form::label('post_breadcrumb_separator','Post Breadcrumb Separator') !!} {!! Form::text('setting[_blog_post_breadcrumb_separator]' , (isset($siteSetting['_blog_post_breadcrumb_separator'])) ? $siteSetting['_blog_post_breadcrumb_separator'] : 0 ,['class' => 'form-control', 'placeholder' => '>>']) !!}
{!! Form::label('post_columns','Columns') !!} {!! Form::select('setting[_blog_post_columns]' , $columns , (isset($siteSetting['_blog_post_columns'])) ? $siteSetting['_blog_post_columns'] : 0 ,['class' => 'form-control']) !!}
@if(true)
{!! Form::label('page_post_total','Number of posts to show on page?') !!} {!! Form::text('setting[_blog_page_post_total]' , (isset($siteSetting['_blog_page_post_total'])) ? $siteSetting['_blog_page_post_total'] : '' ,['class' => 'form-control','style' => 'width:150px']) !!}
@endif @if(true) {{--
--}} {{-- {!! Form::label('listing_open_type','Open Individual Post') !!}--}} {{-- {!! Form::select('setting[_blog_listing_open_type]' , ['detail' => 'Detail' , 'popup' => 'Popup'] , (isset($siteSetting['_blog_listing_open_type'])) ? $siteSetting['_blog_listing_open_type'] : 0 ,['class' => 'form-control']) !!}--}} {{--
--}}
{!! Form::label('post_order_by','Default Order') !!} {!! Form::select('setting[_blog_post_order_by]' , \App\SiteSetting::orderby_posts() , (isset($siteSetting['_blog_post_order_by'])) ? $siteSetting['_blog_post_order_by'] : 0 ,['class' => 'form-control']) !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons]' , null, (isset($siteSetting['_blog_show_social_share_icons'])) ? $siteSetting['_blog_show_social_share_icons'] : 0 , ['id' => 'show_social_share_icons']) !!} {!! Form::label('_blog_show_social_share_icons','Show Social Icons Under Each Post On Index?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'facebook' , (in_array('facebook',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Facebook ?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'twitter' , (in_array('twitter',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Twitter ?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'linkedin' , (in_array('linkedin',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Linkedin ?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'googleplus' , (in_array('googleplus',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Google + ?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'pinterest' , (in_array('pinterest',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Pinterest ?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'email' , (in_array('email',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Email ?') !!}
{!! Form::checkbox('setting[_blog_show_social_share_icons_detail][]' , 'sharethis' , (in_array('sharethis',$icons_detail) ? 1 : 0)) !!} {!! Form::label('_blog_show_social_share_icons_detail','Sharethis ?') !!}
{{--
--}} {{-- {!! Form::checkbox('setting[_blog_show_social_share_icons]' , null , (isset($siteSetting['_blog_show_social_share_icons'])) ? $siteSetting['_blog_show_social_share_icons'] : 0 , ['id' => 'show_social_share_icons']) !!}--}} {{-- {!! Form::label('show_social_share_icons','Show Social Icons Under Each Post On Index?') !!}--}} {{--
--}}
{!! Form::label('social_share_icon_code','Social Share Icon code for individual post? (The embedded code can be generated at sharethis.com) ') !!} {!! Form::textarea('setting[_blog_social_share_icon_code]' , (isset($siteSetting['_blog_social_share_icon_code'])) ? $siteSetting['_blog_social_share_icon_code'] : '' , ['class' => 'form-control', 'placeholder' => 'Social Share icon code', 'rows' => '3']) !!}
{{--
--}} {{-- {!! Form::checkbox('setting[_blog_show_blog_gallery]' , null , (isset($siteSetting['_blog_show_blog_gallery'])) ? $siteSetting['_blog_show_blog_gallery'] : 0 ,['id' => 'show_blog_gallery']) !!}--}} {{-- {!! Form::label('show_blog_gallery','Display Gallery in Blog Post?') !!}--}} {{--
--}} {{-- --}} {{--
--}} {{-- {!! Form::checkbox('setting[_blog_post_related_item_show]' , null , (isset($siteSetting['_blog_post_related_item_show'])) ? $siteSetting['_blog_post_related_item_show'] : 0 ,['id' => 'post_related_item_show']) !!}--}} {{-- {!! Form::label('post_related_item_show','Show Related Posts ?') !!}--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('setting[_blog_post_individual_related_items]' , null , (isset($siteSetting['_blog_post_individual_related_items'])) ? $siteSetting['_blog_post_individual_related_items'] : 0) !!}--}} {{-- {!! Form::label('post_individual_related_items','Don’t show Related Posts section on posts?') !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('post_related_items_num','Number of Related Posts to show') !!}--}} {{-- {!! Form::number('setting[_blog_post_related_items_num]' , (isset($siteSetting['_blog_post_related_items_num'])) ? $siteSetting['_blog_post_related_items_num'] : 0 ,['class' => 'form-control', 'placeholder' => '3']) !!}--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::checkbox('setting[_blog_show_recent_cat]' , null , (isset($siteSetting['_blog_show_recent_cat'])) ? $siteSetting['_blog_show_recent_cat'] : 0 ,['id' => 'show_recent_cat']) !!}--}} {{-- {!! Form::label('post_show_recent_cat','Show Recent Category') !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('post_pagination_type','Pagination Type') !!}--}} {{-- {!! Form::select('setting[_blog_post_pagination_type]' , ['numeric' => 'Numeric' ,'alphabetical' => 'Alphabetical'] , (isset($siteSetting['_blog_post_pagination_type'])) ? $siteSetting['_blog_post_pagination_type'] : 0 ,['class' => 'form-control']) !!}--}} {{--
--}} @endif