@include('admin.components.form.input-file',[
'label' => __("Thumbnail Image"),
'class' => "file-holder",
'name' => "image",
'old_files' => $setup_seo->image,
'old_files_path' => files_asset_path('seo'),
])
@include('admin.components.form.input',[
'label' => __("Social Title")."*",
'type' => "text",
'class' => "form--control",
'placeholder' => "Title Here...",
'name' => "title",
'attribute' => "data-limit=120",
'value' => old('title',$setup_seo->title)
])
@include('admin.components.form.textarea',[
'label' => __("Social Description"),
'class' => "form--control",
'value' => "Write Here...",
'name' => "desc",
'attribute' => "data-limit=255",
'value' => old('desc',$setup_seo->desc)
])
@include('admin.components.button.form-btn',[
'class' => "w-100 btn-loading",
'text' => __("Update"),
'permission' => "admin.web.settings.setup.seo.update",
])