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

General Settings

{{-- Form Container --}}
{{-- Form points to settings.update route --}}
@csrf @method('PUT') {{-- Bulk Delete Settings --}}
Bulk Delete Options
{{-- Campaign Bulk Delete Toggle --}} {{-- Uses Alpine for interactive toggle state --}}
Enable Campaign Bulk Delete Allow selecting multiple campaigns for deletion on the index page. {{-- Hidden input submits the actual boolean value (0 or 1) --}} {{-- The button visually represents the toggle --}}
@error('enable_campaign_bulk_delete')

{{ $message }}

@enderror {{-- Product Bulk Delete Toggle --}}
Enable Product Bulk Delete Allow selecting multiple products for deletion on the index page.
@error('enable_product_bulk_delete')

{{ $message }}

@enderror
{{-- Locale Settings --}}
Localization

Sets the default timezone for date display and processing.

@error('app_timezone')

{{ $message }}

@enderror
{{-- Add Date/Time Format Selectors here if needed --}}
{{-- Organization Details --}}
Organization Details
@error('org_name')

{{ $message }}

@enderror

Public contact or default sender address.

@error('org_email')

{{ $message }}

@enderror
@if ($settings['org_logo_path'])
Current Org Logo {{-- Optional: Add a remove checkbox --}} {{-- --}}
@endif

Recommended: SVG or PNG with transparent background. Max 1MB.

@error('org_logo')

{{ $message }}

@enderror
{{-- Submit Button --}}
{{-- End Form Container --}} @endsection