{!!
Form::customSelect('style', $styles, Arr::get($attributes, 'style'))
!!}
{!! Form::mediaImages('background_images', explode(',', Arr::get($attributes, 'background_images'))) !!}
{!! Form::customSelect('enabled_search_box', [
true => trans('core/base::base.yes'),
false => trans('core/base::base.no'),
], Arr::get($attributes, 'enabled_search_box', true))
!!}
{!! Form::customSelect('search_type', [
'properties' => __('Properties search'),
'projects' => __('Projects search'),
], Arr::get($attributes, 'search_type', true))
!!}