{!! Html::link(route_url(), '清空条件', ['class'=> 'btn btn-warning']) !!}
{!! Form::checkbox('_check_all', 1, null, ['class' => 'J_check_all']) !!}
@if (isset($item))
{!! Form::model($item,['route' => ['dsk_blog_content.edit', $item->help_id], 'id' => 'form_help']) !!}
@else
{!! Form::open(['route' => 'dsk_blog_content.create','id' => 'form_help']) !!}
@endif
{!! Form::model($order, ['route' => 'dsk_order.progress', 'id' => 'form_progress', 'method' => 'post']) !!}
{!! Form::model(isset($item) ? $item : null,['route' => 'order.store', 'id' => 'form_order','class'=> 'form-horizontal', 'method'=> 'post']) !!}
{!! Form::open(['url' => route('order.update_progress', [$order_id]), 'id' => 'form_progress']) !!}
{!! Form::hidden('order_id') !!}
{!! Form::label('parent_id', trans('admin.node.parent'), ['class' => 'strong validation']) !!}
{!! Form::text('search[kw]', null, ['class'=> 'form-control input-sm', 'placeholder' => '输入昵称/会员ID进行搜索']) !!}
{!! Form::textarea('content', null, ['style' => 'height: 60px;width:260px;']) !!}
{!! Form::button('<span>更新进度</span>', ['class'=> 'btn-btn-small J_updateFee']) !!}
{!! Form::button('<span>更新进度</span>', ['class'=> 'btn-small', 'type'=> 'submit']) !!}
{!! Form::select('question_type', $question_type, null, ['placeholder' => '请选择问题类型']) !!}
{!! Form::close() !!}