@extends('backEnd.layouts.master') @section('title', 'Theme Setup') @section('content')
1
Theme Layout

@if($canManageAllThemes ?? false) Super admin — সব theme layout দেখতে ও switch করতে পারবেন। @else আপনার store-এ শুধু active Ayurvedic/Organic layout আছে। Color customize Step 2 থেকে করুন। @endif

2
Color Customize করুন

Preset click করুন বা color picker দিয়ে brand color set করুন — hex code লাগবে না।

Theme Color Studio
Step 1 — Active Theme Layout
Active: {{ ucfirst($setting?->active_theme ?? 'organic') }}
@if($canManageAllThemes ?? false)
Super Admin: সব theme layout visible — activate করতে পারবেন।
@else
অন্য theme layout (Cloth, Jewelry, Gadget…) hidden। Theme change শুধু super admin করতে পারবেন।
@endif

@if($canManageAllThemes ?? false) প্রতিটি theme আলাদা product type এর জন্য optimized। Color পরে Step 2 থেকে change করবেন। @else বর্তমানে শুধু আপনার active store theme দেখানো হচ্ছে। @endif

@foreach($themes as $key => $theme)

{{ explode(' ', $theme['label'])[0] }}

{{ $theme['name'] }}
{{ $theme['description'] }} @if($key === 'organic') Ayurvedic / Active @endif
@if($setting?->active_theme === $key) Active @elseif($canManageAllThemes ?? false)
@csrf
@endif
@endforeach
Step 2: Layout select করার পর Theme Color Studio থেকে preset বা custom color apply করুন।
@endsection