@extends('admin.master') @section('content') @php /* |-------------------------------------------------------------------------- | Determine Initial Active Tab |-------------------------------------------------------------------------- | | Validation error থাকলে সংশ্লিষ্ট tab automatic open হবে। | */ $initialTab = 'basic'; if ( $errors->hasAny([ 'logo', 'favicon', ]) ) { $initialTab = 'media'; } elseif ( $errors->hasAny([ 'phone', 'email', 'whatsapp_number', 'address', ]) ) { $initialTab = 'contact'; } elseif ( $errors->hasAny([ 'facebook_page_link', 'messenger', 'x_link', 'instagram_link', 'tiktok_link', 'youtube_link', ]) ) { $initialTab = 'social'; } @endphp
{{-- ===================================================== PAGE HEADER ====================================================== --}}
Store Configuration

Company Settings

Manage your company information, branding, contact details and social media links.

Company Profile
{{-- ===================================================== SUCCESS MESSAGE ====================================================== --}} @if(session('success')) @endif {{-- ===================================================== VALIDATION ERRORS ====================================================== --}} @if($errors->any()) @endif {{-- ===================================================== SETTINGS FORM ====================================================== --}}
@csrf
{{-- ========================================= LEFT TAB NAVIGATION ========================================== --}} {{-- ========================================= TAB CONTENT ========================================== --}}
{{-- ================================= BASIC INFORMATION ================================== --}}

Basic Information

Add the public name and a short description of your company.

General company details
@error('name')
{{ $message }}
@enderror
This description can be used in your website footer, company profile or About section.
@error('comapny_desc')
{{ $message }}
@enderror
{{-- ================================= MEDIA ================================== --}}

Logo & Media

Upload your primary company logo and browser favicon.

JPG, PNG, SVG, WEBP or ICO
{{-- Logo --}}

Company Logo

Use a clear horizontal or square logo.

Company logo preview Logo Preview
Choose a new file to replace the current logo.
@error('logo')
{{ $message }}
@enderror
{{-- Favicon --}}

Website Favicon

A square image works best for browser tabs.

Favicon preview Favicon Preview
Recommended size: 32×32 or 64×64 pixels.
@error('favicon')
{{ $message }}
@enderror
{{-- ================================= CONTACT DETAILS ================================== --}}

Contact Details

Add the contact information customers can use to reach your company.

Customer-facing information
@error('phone')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('whatsapp_number')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
{{-- ================================= SOCIAL LINKS ================================== --}}

Social Media Links

Connect your website with official company social profiles.

Enter complete URLs
@error('facebook_page_link')
{{ $message }}
@enderror
@error('messenger')
{{ $message }}
@enderror
@error('x_link')
{{ $message }}
@enderror
@error('instagram_link')
{{ $message }}
@enderror
@error('tiktok_link')
{{ $message }}
@enderror
@error('youtube_link')
{{ $message }}
@enderror
{{-- ============================================= SAVE FOOTER ============================================== --}}
@endsection