@extends('layouts.dashboard') @section('title', 'Appearance & Branding') @section('header', 'Appearance & Branding') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')

Appearance & Branding

Customize your system's logo and branding

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

Logo & Branding

@csrf @method('PUT')

This will be displayed in the navigation bar and throughout the system.

A short tagline or slogan for your system (optional).

@if($logo)

Current Logo:

Current Logo
@endif
@if($favicon)

Current Favicon:

Current Favicon
@endif
Cancel

Live Preview

@endsection