@if (is_plugin_active('ads'))
{!! Form::customSelect(
'ads_key',
['' => __('-- Select --')] +
AdsManager::getData(true)->pluck('name', 'key')->toArray(),
$config['ads_key'],
['class' => 'form-control select-full'],
) !!}
{!! Form::mediaImage('background', $config['background']) !!}
{!! Form::customSelect(
'size',
[
'full-with' => __('Full width'),
'large' => __('Large'),
'medium' => __('Medium'),
],
$config['size'],
['class' => 'form-control select-full'],
) !!}
@endif