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

{{ __('Contact') }}

{{ __('Contact') }}
@include('shared.message')
@csrf
@if ($errors->has('contact_form')) {{ $errors->first('contact_form') }} @endif {{ __('Enable or disable the contact form on the contact page.') }} {{ __('When disabled, visitors will not be able to send messages through the form.') }}
@if ($errors->has('contact_email')) {{ $errors->first('contact_email') }} @endif {{ __('The email address used to receive messages from the contact form.') }} {{ __('If set to Public, the address will also be displayed on the contact page as a clickable link.') }} {{ __('If set to Private, it will only be used as the recipient for form submissions.') }}
@if ($errors->has('contact_phone')) {{ $errors->first('contact_phone') }} @endif {{ __('The phone number displayed on the contact page as a clickable link.') }}
@if ($errors->has('contact_address')) {{ $errors->first('contact_address') }} @endif {{ __('The physical address displayed on the contact page.') }}
{{ __('Social') }}

@if ($errors->has('social_facebook')) {{ $errors->first('social_facebook') }} @endif
@if ($errors->has('social_x')) {{ $errors->first('social_x') }} @endif
@if ($errors->has('social_instagram')) {{ $errors->first('social_instagram') }} @endif
@if ($errors->has('social_youtube')) {{ $errors->first('social_youtube') }} @endif
@if ($errors->has('social_linkedin')) {{ $errors->first('social_linkedin') }} @endif
@if ($errors->has('social_github')) {{ $errors->first('social_github') }} @endif
@if ($errors->has('social_discord')) {{ $errors->first('social_discord') }} @endif
@if ($errors->has('social_reddit')) {{ $errors->first('social_reddit') }} @endif
@if ($errors->has('social_tiktok')) {{ $errors->first('social_tiktok') }} @endif
@if ($errors->has('social_threads')) {{ $errors->first('social_threads') }} @endif
@if ($errors->has('social_tumblr')) {{ $errors->first('social_tumblr') }} @endif
@if ($errors->has('social_pinterest')) {{ $errors->first('social_pinterest') }} @endif
@endsection @include('shared.sidebars.admin')