@extends('layouts.admin') @section('page_title', 'Site Settings') @section('content')

Site Name

Update the site name shown in the browser tab title and footer.

@csrf
@error('site_name')

{{ $message }}

@enderror

Favicon

Upload a favicon for your site. Recommended: 32×32px, PNG or ICO format.

@php $favicon = \App\Models\Setting::get('favicon'); @endphp @if($favicon)
Current favicon

Current Favicon

Upload a new one below to replace it.

@csrf
@endif
@csrf
@error('favicon')

{{ $message }}

@enderror
@endsection @section('scripts') @endsection