@extends('layouts.sadmin') @section('title', 'Application Branding') @push('styles') @endpush @section('content') @if($errors->any())
@endif

Application Branding

Manage the platform logo shown on login and select-company pages before a tenant is chosen.

Application Logo
@include('superadmin.branding._upload-form', ['logo' => $logo, 'formId' => 'Full'])
How it works

Like QuickBooks and Xero, the app stores one master image and scales it per screen with CSS.

  • Application logo (here) — login, select-company header, top bar
  • Company logo (Settings → General per company) — sidebar, reports, documents
  • Sidebar shows the company logo; if none is uploaded, the application logo is used there only
@if($logo['is_custom'])
Remove Custom Logo

Reverts login pages to the default {{ config('app.name') }} logo.

@csrf @method('DELETE')
@endif
@endsection