@extends('layouts.app') @section('content')

تخصيص الثيم

{{ $store->name }} {{ $theme->name }}

@csrf

الألوان الرئيسية

@php $themeColors = json_decode($theme->colors, true); $customColors = isset($themeSettings['colors']) ? $themeSettings['colors'] : []; @endphp @foreach(['primary', 'secondary', 'accent', 'background', 'card', 'text'] as $colorKey)
@endforeach

الخطوط

@php $themeFonts = json_decode($theme->fonts, true); $customFonts = isset($themeSettings['fonts']) ? $themeSettings['fonts'] : []; @endphp

إعدادات التخطيط

@php $themeLayout = json_decode($theme->layout_options, true); $customLayout = isset($themeSettings['layout_options']) ? $themeSettings['layout_options'] : []; @endphp

معاينة

@if($theme->thumbnail) {{ $theme->name }} @else
@endif

قم بتخصيص الألوان والخطوط وإعدادات التخطيط لتناسب هوية متجرك. ستظهر التغييرات في واجهة المتجر.

فتح المعاينة في نافذة جديدة
@endsection