@extends('admin.layouts.master') @section('css') @include('admin.helper.formscss') @endsection @section('page-header') @endsection @section('content')
@csrf
@php $colorTypes = [ 'primary' => [ 'title' => 'اختر اللون الأساسي', 'previewTitle' => 'معاينة الألوان الأساسية', 'name' => 'primary_color', 'fallback' => '#b344f0', // Default primary color ], 'secondary' => [ 'title' => 'اختر اللون الثانوي', 'previewTitle' => 'معاينة الألوان الثانوية', 'name' => 'secondary_color', 'fallback' => '#6b7280', // Default secondary color ], 'background' => [ 'title' => 'اختر لون الخلفية', // No preview for background color 'name' => '--color-background', 'fallback' => '#f8fafc', // Default background color ], 'text' => [ 'title' => 'اختر لون النص', // No preview for text color 'name' => '--color-text', 'fallback' => '#030712', // Default text color ], 'textLight' => [ 'title' => 'اختر لون النص الفاتح', // No preview for border color 'name' => '--color-text-light', 'fallback' => '#f8fafc', // Default text light color ], ]; @endphp @foreach ($colorTypes as $colorType => $labels)
@if (isset($labels['previewTitle']))
{{ $labels['previewTitle'] }}
@endif
@endforeach {{-- No hidden fields for CSS variables anymore --}}
@endsection @section('js') @include('admin.helper.formscripts') @include('vue') @endsection