@extends('layouts.app') @section('title', 'System Settings') @section('content')

System Settings

Configure system-wide settings for the Production module.

@csrf @method('PUT')

Server DateTime / Timezone

Configure the system timezone for date and time display.

@error('timezone')

{{ $message }}

@enderror
{{ now()->timezone($settings['timezone'])->format('Y-m-d H:i:s') }} ({{ $settings['timezone'] }})

Order Processing Settings

Configure settings for order processing and stock management.

Stock will be deducted from this warehouse when orders are marked as packed.

@error('default_warehouse_id')

{{ $message }}

@enderror @if(empty($settings['default_warehouse_id']))

Warning: No warehouse selected. Stock deduction for order packing will search any available warehouse.

@endif

Branding Settings

Customize the appearance of the Production system.

@error('site_name')

{{ $message }}

@enderror
@if($settings['site_logo'])
Current Logo
@endif

PNG, JPG, GIF, SVG up to 2MB. Recommended: 200x50px

@error('site_logo')

{{ $message }}

@enderror

Display site name text next to the logo in the navigation bar. Uncheck to show logo only.

@error('footer_text')

{{ $message }}

@enderror

Maintenance Mode

Enable maintenance mode to prevent access to the system.

When enabled, only admin users can access the system. Other users will see a maintenance message.

@error('maintenance_message')

{{ $message }}

@enderror
@endsection