17 lines
831 B
PHP
17 lines
831 B
PHP
|
<div class="row">
|
||
|
<div class="col-md-8">
|
||
|
<div class="box-content clearfix">
|
||
|
{{ Form::select('storefront_footer_tags', trans('storefront::attributes.storefront_footer_tags'), $errors, $tags, $settings, ['class' => 'selectize prevent-creation', 'multiple' => true]) }}
|
||
|
{{ Form::text('translatable[storefront_copyright_text]', trans('storefront::attributes.storefront_copyright_text'), $errors, $settings) }}
|
||
|
</div>
|
||
|
|
||
|
<div class="box-content clearfix">
|
||
|
@include('media::admin.image_picker.single', [
|
||
|
'title' => trans('storefront::storefront.form.accepted_payment_methods_image'),
|
||
|
'inputName' => 'storefront_accepted_payment_methods_image',
|
||
|
'file' => $acceptedPaymentMethodsImage,
|
||
|
])
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|