@extends('backend.layouts.app') @section('title', @$data['title']) @section('style') @endsection @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@php $general_setting = request()->has('general_setting'); $email_setup = request()->has('email_setup'); $payment_gateway = request()->has('payment_gateway'); $storage_setup = request()->has('storage_setup'); $db_backup = request()->has('db_backup'); $about_system = request()->has('about_system'); $app_theme_setup = isModuleActive('MultiTheme') ? request()->has('app_theme_setup') : ''; $contact_info = request()->has('contact_info'); $website_settings = request()->has('website_settings'); $default_tab = ''; if (!$general_setting && !$email_setup && !$storage_setup && !$db_backup && !$about_system && !$app_theme_setup && !$contact_info && !$payment_gateway && !$website_settings) { $default_tab = 'active'; } else { $default_tab = ''; } @endphp
{{ _trans('settings.General') }}

@csrf
@if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
{{-- File uplode Button --}}
@if ($errors->has('backend_image'))
{{ $errors->first('backend_image') }}
@endif
@if ($errors->has('company_logo_frontend'))
{{ $errors->first('company_logo_frontend') }}
@endif
{{-- File uplode Button --}}
@if ($errors->has('company_icon'))
{{ $errors->first('company_icon') }}
@endif
@if (isMainCompany())

{{ _trans('settings.SEO') }}

@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@if ($errors->has('meta_keywords'))
{{ $errors->first('meta_keywords') }}
@endif
@if ($errors->has('meta_image'))
{{ $errors->first('meta_image') }}
@endif
@endif
@if (hasPermission('general_settings_update'))
@endif
{{ _trans('settings.Email setup [SMTP]') }}

@csrf
{{-- not show email configuration and details if config('app.style') === 'demo' --}}
{{-- not show email configuration and details if config('app.style') === 'demo' --}}
{{-- not show email configuration and details if config('app.style') === 'demo' --}}
@if (hasPermission('general_settings_update'))
@endif
{{ _trans('settings.Payment Gateway') }}

@csrf

{{ _trans('settings.Stripe') }}

{{ _trans('settings.Demo Checkout') }}

{{ _trans('settings.Offline Payment Type') }}

{{ _trans('settings.Storage setup') }}

@csrf
@if (hasPermission('general_settings_update'))
@endif
{{ _trans('settings.Database backup') }}

@if (@$data['databases']) @foreach ($data['databases'] as $key => $item) @endforeach @endif
{{ _trans('common.File name') }} {{ _trans('common.Date') }} {{ _trans('common.Action') }}
{{ $item->path }} {{ showDate($item->created_at) }}
{{ _trans('settings.About System') }}

{{ @aboutSystem()['version'] }}
{{ showDate(@aboutSystem()['release_date']) }}
@if (isModuleActive('MultiTheme')) @include('multitheme::partials.settings.app-theme-setup', ['app_theme_setup' => $app_theme_setup]) @endif
{{ _trans('settings.Contact Info') }}

@csrf
{{ _trans('settings.Website Setting') }}

@csrf

{{ _trans('settings.WhatsApp') }}

{{ _trans('settings.reCAPTCHA') }}

{{ _trans('settings.Tawk') }}

@endsection @section('script') @endsection