{{Form::open(['method' => 'GET','id' => 'spider-form','target' => '_blank','action' => 'AdminApiController@getSurvey'])}}
{{Form::label('gerencia','CONSULTOR',['class' => 'label-control'])}}
{{Form::select(
'gerencia',
[null => 'Todos los consultores'] + User::where('role','manager')->lists('gerencia','id'),
null,
['class' => 'form-control select-2 filter','id' =>'gerencia'])
}}
{{Form::label('encuesta','SOLICITUD GENERAL',['class' => 'label-control'])}}
{{Form::select('encuesta',[],null,['class' => ' form-control select-2 filter','id' => 'encuesta','DISABLED'])}}
{{Form::label('since','DESDE',['class' => 'label-control'])}}
{{Form::text('since',Input::get('since',\Carbon\Carbon::now('America/Mexico_City')->subMonths(6)->format('Y-m-d')) , ['class' => 'form-control datepicker','id' => 'since' ])}}
{{Form::label('until','HASTA',['class' => 'label-control'])}}
{{Form::text('until',Input::get('until',\Carbon\Carbon::now('America/Mexico_City')->format('Y-m-d')), ['class' => 'form-control datepicker','id' => 'until' ])}}
{{Form::close()}}
{{Form::open(
[
'method' => 'get',
'id' => 'graph-form'
]
)}}
{{Form::close()}}
@endsection
@section('script')
@parent
@endsection