@extends('layouts.dashboard') @section('title', 'Pengaturan Organisasi') @section('page-title', 'Pengaturan Aplikasi') @section('content') @php $value = function (string $field, string $key, $default = '') use ($settings) { return old($field, $settings[$key] ?? $default); }; $namaOrganisasi = $settings['organisasi.nama'] ?? 'Belum ada nama organisasi'; $logoPath = $settings['organisasi.logo_path'] ?? null; $logoUrl = !empty($logoPath) ? asset($logoPath) : asset('images/logo.png'); $themeSidebarStart = old('theme_sidebar_start', $settings['theme.sidebar_start'] ?? '#7a1f2b'); $themeSidebarMid = old('theme_sidebar_mid', $settings['theme.sidebar_mid'] ?? '#b93a4b'); $themeSidebarEnd = old('theme_sidebar_end', $settings['theme.sidebar_end'] ?? '#ec644b'); $themeAccent = old('theme_accent', $settings['theme.accent'] ?? '#0b5ed7'); @endphp