{{ __('General Settings') }}

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('Organization Information') }}

@csrf

{{ __('This will appear on reports, payslips, and emails') }}

Number of days to extend contract after approval

Recommended size: 200x80 pixels (PNG or JPG, max 2MB)

@if(!empty($settings['org_logo']))

Current Logo:

Organization Logo
@endif

Recommended size: 32x32 or 48x48 pixels (PNG, ICO or SVG, max 1MB). Maximum dimensions: 512×512 pixels. Falls back to the logo if not set.

@if(!empty($settings['org_favicon']))

Current Favicon:

Favicon
@endif

Recommended size: 1920x1080 pixels (PNG or JPG, max 5MB)

@if(!empty($settings['org_background']))

Current Background:

Background Image
@endif

{{ __('Currency Exchange Rates') }}

{{ __('Manage currency pairs for payroll calculations') }}

@forelse($currencies as $c) @empty @endforelse
{{ __('Pair') }} {{ __('Rate') }} {{ __('Base') }} {{ __('Actions') }}
{{ $c->from_currency }} → {{ $c->to_currency }}
{{ $c->name }}
1 {{ $c->from_currency }} = {{ number_format($c->exchange_rate, 2) }} {{ $c->to_currency }} @if($c->is_base) Base @endif {{ __('Edit') }}
@csrf @method('DELETE')
{{ __('No exchange rates added yet') }}

{{ __('Add New Exchange Rate') }}

@csrf

{{ __('Example: If 1 USD = 2500 TZS, enter 2500') }}