@extends('admin/layout') @section('title') {{ labels('admin_labels.add_store', 'Add Store') }} @endsection @section('content') @php use App\Services\MediaService; use App\Services\SettingService; @endphp
{{ labels('admin_labels.store_details', 'Store Details') }}
{{ labels('admin_labels.store_images', 'Store Images') }}
{{ labels('admin_labels.app_settings', 'App & Web Setting') }}
{{ labels('admin_labels.cards_display_styles', 'Cards Display Styles') }}
{{ labels('admin_labels.categories_display_style', 'Categories Display Style') }}
{{ labels('admin_labels.brands_display_style', 'Brands And Wishlist Display Style') }}
{{ labels('admin_labels.offer_display_style', 'Offer Display Style') }}
{{ labels('admin_labels.delivery_charge_setting', 'Delivery Charge Setting') }}
@csrf
{{ labels('admin_labels.store_details', 'Store Details') }}
@foreach ($languages as $lang) @if ($lang->code !== 'en')
@endif @endforeach
{{ labels('admin_labels.store_images', 'Store Images') }}
{{ labels('admin_labels.web_home_page_theme', 'Web Home Page Theme') }}
Theme 1 Theme 2 Theme 3 Theme 4 Theme 5 Theme 5
{{ labels('admin_labels.app_images', 'App Images') }}
{{ labels('admin_labels.cards_display_style', 'Cards Display Style For App') }}
Style 1 Style 2 Style 3
Product Card Style 1 Product Card Style 2 Product Card Style 3
{{ labels('admin_labels.cards_display_style', 'Cards Display Style For Web') }}
{{ labels('admin_labels.products_details_style', 'Products Details Style For Web') }}
Theme 1 Theme 2
{{ labels('admin_labels.categories_display_style', 'Categories Display Style') }}
@foreach ($languages as $lang) @if ($lang->code !== 'en')
@endif @endforeach
Category Style 1 Category Style 2
Category Card Style 1 Category Card Style 2 Category Card Style 3
{{ labels('admin_labels.cards_display_style', 'Cards Display Style For Web') }}
{{ labels('admin_labels.brands_display_style', 'Brands Display Style') }}
Brand Style 1 Brand Style 2
{{ labels('admin_labels.brands_display_style', 'Brands & Wishlist Display Style For Web') }}
{{ labels('admin_labels.offer_display_style', 'Offer Display Style') }}
Offer Slider Style 1 Offer Slider Style 2 Offer Slider Style 3 Offer Slider Style 4 Offer Style 1
{{ labels('admin_labels.delivery_charge_and_product_deliverability_setting', 'Delivery Charge & Product Deliverability Setting') }}
{{ labels('admin_labels.product_deliverability_setting', 'Product Deliverability Setting') }}

@php $shipping_settings = app(SettingService::class)->getSettings('shipping_method', true); $shipping_settings = json_decode($shipping_settings, true); @endphp @if (isset($shipping_settings['shiprocket_shipping_method']) && $shipping_settings['shiprocket_shipping_method'] == 1) (Disabled because standard shipping is on from shipping method) @endif
{{ labels('admin_labels.delivery_charge_setting', 'Delivery Charge Setting') }}

{{ labels('admin_labels.go_back', 'Go Back') }}

@endsection