@push('styles') @endpush @section('title') {{ __('backend.application_settings') }} @endsection @section('breadcrumbs') {{ Breadcrumbs::render('settings') }} @endsection

{{ __('backend.application_settings') }}

@csrf
@php $shopNowItems = $settings['shop_now'] ?? []; @endphp @if (is_array($shopNowItems) && count($shopNowItems)) @foreach ($shopNowItems as $sn)
@include('backend.pages.filemanager.input', [ 'name' => 'image', 'image' => $sn['image'] ?? '', 'dimension' => 'Heigh: 64px', ])
@endforeach @else
@include('backend.pages.filemanager.input', [ 'name' => 'image', 'image' => '', 'dimension' => 'Height: 64px', ])
@endif
Each item requires a name, URL, and image.
@include('backend.pages.filemanager.input', [ 'name' => 'new_product_notification[image]', 'image' => $settings['new_product_notification']['image'] ?? '', 'dimension' => 'Recommended: any', ])
@push('scripts') @endpush