@extends('layouts.app') @section('site_title', formatTitle([__('General'), __('Settings'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Settings')], ]])

{{ __('General') }}

{{ __('General') }}
@include('shared.message')
@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif {{ __('The website title, displayed in the browser tab, email subjects, and various other contexts.') }}
@if ($errors->has('tagline')) {{ $errors->first('tagline') }} @endif {{ __('A short descriptive phrase or slogan displayed in the browser tab on the homepage.') }}
{{ __('Appearance') }}

@if ($errors->has('logo')) {{ $errors->first('logo') }} @endif {{ __('The website logo displayed on light backgrounds.') }}
@if ($errors->has('logo_dark')) {{ $errors->first('logo_dark') }} @endif {{ __('The website logo displayed on dark backgrounds.') }}
@if ($errors->has('favicon')) {{ $errors->first('favicon') }} @endif {{ __('The website icon displayed in the browser tab and bookmarks.') }}
@if ($errors->has('theme')) {{ $errors->first('theme') }} @endif {{ __('The default website theme color.') }} {{ __('Users can change this later in their account settings.') }}
@if ($errors->has('custom_css')) {{ $errors->first('custom_css') }} @endif {{ __('Custom CSS code to override or extend the website\'s default styling.') }}
@if ($errors->has('custom_js')) {{ $errors->first('custom_js') }} @endif {{ __('Custom JavaScript code to extend or modify the website\'s behavior.') }}
{{ __('Localization') }}

@if ($errors->has('locale')) {{ $errors->first('locale') }} @endif {{ __('The default language used for the website interface.') }} {{ __('Users can change this later in their account settings.') }}
@if ($errors->has('timezone')) {{ $errors->first('timezone') }} @endif {{ __('The default timezone used for displaying dates and times across the website.') }} {{ __('Users can change this later in their account settings.') }}
{{ __('Navigation') }}

@if ($errors->has('paginate')) {{ $errors->first('paginate') }} @endif {{ __('The default number of results or items displayed per page in listings and search results.') }} {{ __('Users can change this later in their account settings.') }}
@if ($errors->has('homepage_redirect_url')) {{ $errors->first('homepage_redirect_url') }} @endif {{ __('The URL to which visitors are redirected when accessing the website\'s homepage.') }} {{ __('This setting overrides the default homepage and replaces it with the specified destination.') }}
{{ __('Security') }}

@if ($errors->has('force_https')) {{ $errors->first('force_https') }} @endif {{ __('Enable or disable automatic redirection to HTTPS.') }} {{ __('When enabled, all website traffic will be redirected securely.') }}
@if ($errors->has('banned_words')) {{ $errors->first('banned_words') }} @endif {{ __('A list of inappropriate or offensive words entered on separate lines that will be automatically blocked or filtered.') }}
@endsection @include('shared.sidebars.admin')