@extends('layouts.admin') @section('title', 'Branding') @section('page_title', 'Logo & Favicon') @section('content')
Back to Settings
Logo & Favicon
Files are stored in public/uploads/logo/
@if(session('success')) @endif
@csrf {{-- LOGO --}}
Store Logo
@if($settings->logo)

Current Logo

Logo

{{ $settings->logo }}

@else
No logo uploaded yet.
@endif
Accepted: JPG, PNG, GIF, SVG, WEBP — max 2 MB. Recommended: transparent PNG, min 200×60 px.
@error('logo')
{{ $message }}
@enderror
{{-- Live preview --}}

Preview

Logo preview
{{-- FAVICON --}}
Favicon
@if($settings->favicon)

Current Favicon

Favicon

{{ $settings->favicon }}

@else
No favicon uploaded yet.
@endif
Accepted: ICO, PNG, JPG, GIF — max 512 KB. Recommended: 32×32 or 64×64 px PNG/ICO.
@error('favicon')
{{ $message }}
@enderror
{{-- Live preview --}}

Preview

Favicon preview
Cancel
@endsection @section('extra_js') @endsection