@include('admin.promotions.components.products')
@include('admin.promotions.components.contents')
@include('components.forms.seo', [
'seoSlug' => $promotion->seo_slug ?? '',
'seoTitle' => $promotion->seo_title ?? '',
'seoKeyword' => $promotion->seo_keyword ?? '',
'seoDescription' => $promotion->seo_description ?? '',
'seoImage' => $promotion->seo_image ?? '',
'slugType' => $slugType,
])
@include('components.forms.locale', [
'id' => $id ?? 0,
'idDb' => $idDb,
'localeBW' => $dept->locale_bw ?? 0,
])
@include('components.forms.image',[
'fieldName' => 'image',
'image'=>$promotion->image ?? '',
'isRequired' => false
])
@include('components.forms.image',[
'fieldName' => 'image_thumb',
'image' => $promotion->image_thumb ?? '',
'isRequired' => false,
'fieldTitle' => trans('admin::file.image.title_thumb')
])
@include('components.forms.image',[
'fieldName' => 'image_xs',
'image' => $promotion->image_xs ?? '',
'isRequired' => false,
'fieldTitle' => trans('admin::file.image.title_xs')
])