@extends('layouts.dashboard') @section('title', $pageTitle ?? (isset($systemSetting) ? 'Edit System Settings' : 'Create System Settings')) @section('page_header') @endsection @section('page_content') @if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@php $isEdit = isset($systemSetting); $primaryValue = old('primary_color', $systemSetting->primary_color ?? '#3454d1'); $secondaryValue = old('secondary_color', $systemSetting->secondary_color ?? '#6b7280'); @endphp
@csrf
Drop logo here or click to upload
Drop favicon here or click to upload
Cancel
@endsection @push('styles') @endpush @push('scripts') @endpush