Filter {{$panel}}  

{{--{!! Form::open(['route' => $base_route,'method' => 'GET', 'class' => 'form-horizontal', "enctype" => "multipart/form-data"]) !!}--}}
{!! Form::label('title', 'Title', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('title', null, ["placeholder" => "", "class" => "form-control border-form"]) !!} @include('includes.form_fields_validation_message', ['name' => 'title'])
{!! Form::label('page_type', 'Page Type', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('page_type', ['' => '','content-page' => 'Content Page', 'link-page' => 'Link Page', 'predefine-link' => 'Predefile Link'], null, ["class" => "form-control border-form", "id" => "page_type"]) !!} @include('includes.form_fields_validation_message', ['name' => 'title'])
{!! Form::label('create_date', 'Created', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('create_start_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!} {!! Form::text('create_end_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!}
{!! Form::label('update_date', 'Updated', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('update_start_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!} {!! Form::text('update_end_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!}
{!! Form::label('link', 'Link', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('link', null, ["placeholder" => "Link", "class" => "form-control border-form"]) !!} @include('includes.form_fields_validation_message', ['name' => 'link'])
{!! Form::label('detail_desc', 'Description', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('detail_desc', null, ["placeholder" => "Detail Description", "class" => "form-control border-form summernote", "rows"=>1]) !!} @include('includes.form_fields_validation_message', ['name' => 'detail_desc'])
{{--{!! Form::close() !!}--}}