@extends('layouts.admin') @section('content') @php $theme = request()->cookie('theme', 'dark-blue'); $isLight = in_array($theme, ['light-blue', 'light-green']); $cardBg = $isLight ? 'bg-white' : 'bg-gray-800'; $textPrimary = $isLight ? 'text-gray-900' : 'text-gray-200'; $textSecondary = $isLight ? 'text-gray-600' : 'text-gray-400'; $borderColor = $isLight ? 'border-gray-200' : 'border-gray-700'; $inputBg = $isLight ? 'bg-gray-50 border-gray-300' : 'bg-gray-700 border-gray-600'; $inputText = $isLight ? 'text-gray-900' : 'text-gray-300'; @endphp