{{ Form::open(['route' => ['filters.update', 'shows'], 'method' => 'put', 'role' => 'form']) }}
{{ Form::label('search', 'Search') }}
{{ Form::text('search', Session::get('filters.shows.search', ''), ['class' => 'form-control']) }}
{{ Form::label('date_start', 'Date Start') }}
{{ Form::select('date_start_year', $years, Session::get('filters.shows.date_start_year', ''), ['class' => 'form-control']) }}
{{ Form::select('date_start_month', $months, Session::get('filters.shows.date_start_month', ''), ['class' => 'form-control']) }}
{{ Form::select('date_start_day', $days, Session::get('filters.shows.date_start_day', ''), ['class' => 'form-control']) }}
{{ Form::label('date_end', 'Date End') }}
{{ Form::select('date_end_year', $years, Session::get('filters.shows.date_end_year', ''), ['class' => 'form-control']) }}
{{ Form::select('date_end_month', $months, Session::get('filters.shows.date_end_month', ''), ['class' => 'form-control']) }}
{{ Form::select('date_end_day', $days, Session::get('filters.shows.date_end_day', ''), ['class' => 'form-control']) }}
{{ Form::submit('Submit Filters', ['class' => 'btn btn-primary form-control']) }}
{{ Form::close() }}