{{ __('More') }} / {{ __('General') }}

{{ __('Workspace') }} {{ __('settings') }}

{{ __('Configure your workspace, team, and integrations.') }}

@php $authUser = auth()->user(); $workspace = $authUser?->currentWorkspace; $isOwner = $workspace && (int) $workspace->owner_user_id === (int) $authUser->id; $currencies = \App\Models\Currency::query() ->where('is_active', true) ->orderBy('code') ->get(['code', 'name', 'symbol']); $currentCurrency = $workspace?->currency ?: strtoupper((string) \App\Models\SystemSetting::get('default_currency', 'USD')); $currentTz = $workspace?->timezone ?: 'UTC'; try { $allZones = \DateTimeZone::listIdentifiers(); } catch (\Throwable $e) { $allZones = ['UTC', 'Asia/Kolkata', 'Asia/Dubai', 'Europe/London', 'America/New_York']; } @endphp
@if (session('settings_status'))
{{ session('settings_status') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@csrf

{{ __('Workspace') }}

@if (!$isOwner)

{{ __('Only the workspace owner can change timezone, currency, or workspace name.') }}

@endif
{{ __('wadesk.app/') }}
{{ __("URL slug isn't editable here — contact support to change.") }}
{{ __('All scheduled sends, business-hours checks, and SLA timers run in this zone.') }}
{{ __('Used on plan checkout, invoices, and wallet display.') }}
{{ __('Cancel') }}

{{ __('Working hours') }}

{{ __('Mon - Fri') }}
{{ __('Saturday') }}
{{ __('Sunday') }}
{{-- Personal UX preferences. Auto AI summarize wires the component into a debounced AI review flow — every keystroke (debounced) gets analysed and the operator sees red/green annotations + a "best version" below the textarea. When off, the same flow runs only when the operator clicks the sparkle icon. --}} @php $autoAiOn = (bool) ($authUser->auto_ai_summarize_enabled ?? false); @endphp
@csrf

{{ __('Auto AI summarize') }}

Get a live AI review on every message-body textarea — what's working in green, what to fix in red, plus a one-tap "best version" you can paste back. When off, the same review runs on demand from the sparkle icon inside the toolbar.