@extends('layouts.admin') @section('title', 'General Settings') @section('page-title', 'General Settings') @section('breadcrumbs') Settings chevron_right General @endsection @section('content')
@if(($tab ?? 'company') === 'company')
@csrf

Company Details

Company Media Uploads

Rec: 250x100px
@if(($companySettings->company_logo ?? null) && \Illuminate\Support\Facades\Storage::disk('public')->exists($companySettings->company_logo)) Logo Preview @else image

Click to upload

@endif
edit
Rec: 32x32px
@if(($companySettings->company_favicon ?? null) && \Illuminate\Support\Facades\Storage::disk('public')->exists($companySettings->company_favicon)) Favicon Preview @else image

Click to upload

@endif
edit
Rec: 100x100px
@if(($companySettings->company_icon ?? null) && \Illuminate\Support\Facades\Storage::disk('public')->exists($companySettings->company_icon)) Icon Preview @else image

Click to upload

@endif
edit
Rec: 64x64px
@if($companySettings->company_icon_collapsed ?? null) Collapsed Icon Preview @else image

Click to upload

@endif
edit

Address Information

@elseif(($tab ?? 'company') === 'localization')
@csrf

Basic Information

schedule

Used to calculate dates for reports and analytics.

Choose how dates and times are displayed throughout the application.

info

Language Preferences

Changing the language settings for the entire organization requires administrator approval. Please contact support to change the base language.

@elseif(($tab ?? 'company') === 'signatures')
search
@forelse($signatures ?? [] as $index => $signature) @php $sigContent = $signature->content ?? null; $sigIsStoredFile = $sigContent && \Illuminate\Support\Facades\Storage::disk('public')->exists($sigContent); @endphp @empty @endforelse
# SIGNATURE NAME SIGNATURE STATUS DEFAULT ACTIONS
{{ $index + 1 }} {{ $signature->name ?? 'Signature Name' }}
@if($sigIsStoredFile) Signature Preview @elseif(($signature->type ?? '') === 'text' && $sigContent) {{ \Illuminate\Support\Str::limit($sigContent, 22) }} @else No Preview @endif
@csrf @method('PATCH')
@csrf @method('PATCH')
ink_pen

No signatures found

@if($signatures && $signatures->count() > 0) Showing {{ ($signatures->currentPage() - 1) * $signatures->perPage() + 1 }} to {{ min($signatures->currentPage() * $signatures->perPage(), $signatures->total()) }} of {{ $signatures->total() }} entries @else Showing 0 to 0 of 0 entries @endif

@endif
@endsection