@extends('layouts.admin') @section('title', 'Pengaturan Tema') @section('content')

🎨 Daftar Tema

Tambah Tema
@if(session('success')) @endif
@foreach($themes as $theme) @endforeach
ID - Nama Warna Utama H1 H2 Paragraf Mode Gambar Status Aksi
#{{ $theme->id }} - {{ $theme->name }} {{ $theme->primary_color }} {{ $theme->default_mode }} @if($theme->main_bg_image) bg @endif @if($theme->aktif) Aktif @else
@csrf @method('PUT')
@endif
Edit
{{-- Live Preview Section --}}

🧪 Preview Tema Aktif

@php $active = $themes->firstWhere('aktif', 1); @endphp @if($active)

Contoh Judul H1

Contoh Subjudul H2

Ini adalah teks paragraf yang mengikuti tema warna aktif. Warna, latar belakang, dan gaya teks akan menyesuaikan secara otomatis.

@else

Belum ada tema aktif untuk ditampilkan.

@endif
@endsection