@extends('layouts.admin') @section('content')
{{-- Header --}}

โš™๏ธ Settings

Configure your POS system settings

{{-- Success/Error Messages --}} @if(session('success'))
โœ… {{ session('success') }}
@endif @if(session('error'))
โŒ {{ session('error') }}
@endif @if($errors->any())
@endif {{-- Tabbed Interface --}}
{{-- Tab Headers --}}
{{-- Tab Content --}}
{{-- Shop Information Tab --}}
@csrf
{{-- Logo Upload --}}

Shop Logo

@csrf @if($settings['shop_logo']->value ?? false)
Shop Logo
@endif
{{-- Thermal Receipt Tab --}}
@csrf
{{-- Receipt Header Image Upload --}}

Receipt Header Image

Upload an image to replace the text header on the receipt.

@csrf @if($settings['thermal_header_image']->value ?? false)

Current Header Image:

Receipt Header
@endif
{{-- Receipt Settings Tab --}}
@csrf
{{-- Security Tab --}}
{{-- Password Change --}}

Change Password

@csrf
{{-- Session Timeout --}}

Session Settings

@csrf
{{-- System Tab --}}
{{-- System Actions --}}

System Actions

@csrf
@csrf
{{-- System Information --}}

System Information

Laravel Version
{{ $systemInfo['laravel_version'] }}
PHP Version
{{ $systemInfo['php_version'] }}
Database Size
{{ $systemInfo['database_size'] }}
Disk Usage
{{ $systemInfo['disk_usage'] }}
Total Products
{{ number_format($systemInfo['total_products']) }}
Total Invoices
{{ number_format($systemInfo['total_invoices']) }}
@endsection