@extends('admin.layout') @section('title', 'General Settings') @section('content')

General Settings

@if(session('success')) @endif @if($errors->any()) @endif

Update General Settings

@csrf @method('POST')
@if(isset($settings['logo']) && $settings['logo'])
Logo
@endif
@if(isset($settings['favicon']) && $settings['favicon'])
Favicon
@endif

Settings Information

Note: Changes to these settings will affect the entire application.
Quick Tips:
  • Site name appears in browser tabs and emails
  • Admin email receives system notifications
  • Currency settings affect all monetary displays
  • Enable maintenance mode for site updates
  • Logo and favicon should be optimized for web
Current Settings:
Site Name: {{ $settings['site_name'] ?? 'Not Set' }}
Currency: {{ $settings['currency'] ?? 'Not Set' }}
Timezone: {{ $settings['timezone'] ?? 'UTC' }}
Maintenance: {{ ($settings['site_maintenance'] ?? 0) ? 'Enabled' : 'Disabled' }}
@endsection @section('scripts') @endsection @section('styles') @endsection