@row([
'type' => 'datepicker',
'field' => 'start_date',
])
@row([
'type' => 'datepicker',
'field' => 'end_date',
])
@row([
'type' => 'searchselect',
'field' => 'location_id',
'title' => 'Location',
'options' => [
'value_key' => 'id',
'title_key' => 'title',
'list' => $locations->toArray(),
]
])
@row([
'type' => 'searchselect',
'field' => 'industry_id',
'title' => 'Industry',
'options' => [
'value_key' => 'id',
'title_key' => 'title',
'list' => $industries->toArray(),
]
])
@row([
'type' => 'searchselect',
'field' => 'show_id',
'title' => 'Show',
'options' => [
'value_key' => 'id',
'title_key' => 'title',
'list' => $shows->toArray(),
]
])
@include('admin.base.status')
@include('admin.base.footer')