{!! Form::label('post_sidebar','Sidebar?') !!} {!! Form::checkbox('setting[_blog_post_sidebar]' , null , (isset($siteSetting['_blog_post_sidebar'])) ? $siteSetting['_blog_post_sidebar'] : 0 ,['id' => 'post_sidebar']) !!}
{!! Form::label('list_widget_sidebar','Show listing widget in sidebar ?') !!} {!! Form::checkbox('setting[_blog_list_widget_sidebar]' , null , (isset($siteSetting['_blog_list_widget_sidebar'])) ? $siteSetting['_blog_list_widget_sidebar'] : 0) !!}
{!! Form::label('list_widget_sidebar_title','Side Bar Widget Title') !!} {!! Form::text('setting[_blog_list_widget_sidebar_title]' , (isset($siteSetting['_blog_list_widget_sidebar_title'])) ? $siteSetting['_blog_list_widget_sidebar_title'] : '' ,['class' => 'form-control']) !!}
{!! Form::label('post_sidebar','Right Sidebar') !!} {!! Form::radio('setting[_blog_post_sidebar_choice]' , 'right' , (isset($siteSetting['_blog_post_sidebar_choice']) && $siteSetting['_blog_post_sidebar_choice'] == 'right') ? 1 : 0) !!}
{!! Form::label('post_sidebar','Left Sidebar?') !!} {!! Form::radio('setting[_blog_post_sidebar_choice]' , 'left' , (isset($siteSetting['_blog_post_sidebar_choice']) && $siteSetting['_blog_post_sidebar_choice'] == 'left') ? 1 : 0) !!}
{!! Form::label('enable_sidebar_search_box','Show Search Box in sidebar?') !!} {!! Form::checkbox('setting[_blog_enable_sidebar_search_box]', null , (isset($siteSetting['_blog_enable_sidebar_search_box'])) ? $siteSetting['_blog_enable_sidebar_search_box'] : 0 , ['id' => 'enable_sidebar_search_box']) !!}
{!! Form::label('show_category_icon','Show Category Icon') !!} {!! Form::checkbox('setting[_blog_show_category_icon]' , null , (isset($siteSetting['_blog_show_category_icon'])) ? $siteSetting['_blog_show_category_icon'] : 0) !!}
{!! Form::label('post_show_recent_sidebar','Show Recent Posts in Sidebar') !!} {!! Form::checkbox('setting[_blog_post_show_recent_sidebar]' , null , (isset($siteSetting['_blog_post_show_recent_sidebar'])) ? $siteSetting['_blog_post_show_recent_sidebar'] : 0 ,['id' => 'post_show_recent_sidebar']) !!}
{!! Form::label('post_show_popular_sidebar','Show Popular Posts in Sidebar') !!} {!! Form::checkbox('setting[_blog_post_show_popular_sidebar]' , null, (isset($siteSetting['_blog_post_show_popular_sidebar'])) ? $siteSetting['_blog_post_show_popular_sidebar'] : 0 ,['id' => 'post_show_popular_sidebar']) !!}
{!! Form::label('post_count_popular_sidebar','Count Popular Posts in Sidebar') !!} {!! Form::text('setting[_blog_post_count_popular_sidebar]' , (isset($siteSetting['_blog_post_count_popular_sidebar'])) ? $siteSetting['_blog_post_count_popular_sidebar'] : '' ,['class' => 'form-control','style' => 'width:100px;']) !!}
{!! Form::label('post_show_popular_title','Show Popular Posts Title') !!} {!! Form::checkbox('setting[_blog_post_show_popular_title]' , null , (isset($siteSetting['_blog_post_show_popular_title'])) ? $siteSetting['_blog_post_show_popular_title'] : 0 ,['id' => 'post_show_popular_title']) !!}
{!! Form::label('post_title_popular_sidebar','Title Popular Posts in Sidebar') !!} {!! Form::text('setting[_blog_post_title_popular_sidebar]' , (isset($siteSetting['_blog_post_title_popular_sidebar'])) ? $siteSetting['_blog_post_title_popular_sidebar'] : '' ,['class' => 'form-control']) !!}
{!! Form::label('show_sidebar_single_post','Show Sidebar in Single Post?') !!} {!! Form::checkbox('setting[_blog_show_sidebar_single_post]' , null , (isset($siteSetting['_blog_show_sidebar_single_post'])) ? $siteSetting['_blog_show_sidebar_single_post'] : 0 ) !!}
{!! Form::label('show_sidebar_post_category_list','Show Category List in Sidebar') !!} {!! Form::checkbox('setting[_blog_show_sidebar_post_category_list]' , null , (isset($siteSetting['_blog_show_sidebar_post_category_list'])) ? $siteSetting['_blog_show_sidebar_post_category_list'] : 0 , ['id' => 'show_sidebar_post_category_list']) !!}
{!! Form::label('show_sidebar_post_category_count','Show Category Count in Sidebar') !!} {!! Form::checkbox('setting[_blog_show_sidebar_post_category_count]' , null , (isset($siteSetting['_blog_show_sidebar_post_category_count'])) ? $siteSetting['_blog_show_sidebar_post_category_count'] : 0) !!}
{!! Form::label('sidebar_custom_html','Sidebar Custom html') !!} {!! Form::textarea('setting[_blog_sidebar_custom_html]' , (isset($siteSetting['_blog_sidebar_custom_html'])) ? $siteSetting['_blog_sidebar_custom_html'] : 0 ,['class' => 'form-control', 'rows' => '3']) !!}