@row([
'type' => 'textinput',
'has_language' => true,
'field' => 'title',
])
@row([
'type' => 'image-upload',
'field' => 'top_image',
])
@row([
'type' => 'image-upload',
'field' => 'awards',
'options' => [
'is_single' => false
]
])
@row([
'type' => 'image-upload',
'field' => 'images',
'options' => [
'is_single' => false
]
])
@row([
'type' => 'searchselect',
'field' => 'project_type_id',
'title' => 'Type',
'options' => [
'value_key' => 'id',
'title_key' => 'title',
'list' => $project_types->toArray(),
]
])
@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')
@include('admin.base.seo')