@extends('employee.layouts.app') @section('page-title') {{ __('Settings') }} @endsection @section('breadcrumb') @endsection @php $lang = \App\Models\Utility::getValByName('default_language'); // $logo=asset(Storage::url('uploads/logo/')); $logo = \App\Models\Utility::get_file('uploads/logo'); $logo_light = \App\Models\Utility::getValByName('logo_light'); $logo_dark = \App\Models\Utility::getValByName('logo_dark'); $company_favicon = \App\Models\Utility::getValByName('company_favicon'); $setting = \App\Models\Utility::colorset(); $mode_setting = \App\Models\Utility::mode_layout(); $color = !empty($setting['color']) ? $setting['color'] : 'theme-3'; $SITE_RTL = isset($setting['SITE_RTL']) ? $setting['SITE_RTL'] : 'off'; @endphp {{-- Storage setting --}} @php $file_type = config('files_types'); $setting = App\Models\Utility::settings(); $local_storage_validation = $setting['local_storage_validation']; $local_storage_validations = explode(',', $local_storage_validation); $s3_storage_validation = $setting['s3_storage_validation']; $s3_storage_validations = explode(',', $s3_storage_validation); $wasabi_storage_validation = $setting['wasabi_storage_validation']; $wasabi_storage_validations = explode(',', $wasabi_storage_validation); @endphp {{-- end Storage setting --}} @push('css-page') @if ($color == 'theme-3') @endif @if ($color == 'theme-2') @endif @if ($color == 'theme-4') @endif @if ($color == 'theme-1') @endif @endpush @push('script-page') @endpush @section('breadcrumb') @endsection @section('content')
{{-- --}}
{{ __('Brand Settings') }}
{{-- {{ Form::model($settings, ['url' => 'systems', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }} --}}
@csrf
{{--
{{ __('Logo dark') }}
@error('logo_dark')
@enderror
{{ __('Logo Light') }}
@error('logo_light')
@enderror
{{ __('Favicon') }}
@error('favicon')
@enderror
--}} {{--
@error('title_text') {{ $message }} @enderror
@error('footer_text') {{ $message }} @enderror
--}}

{{ __('Theme Customizer') }}

{{ __('Primary color settings') }}

@foreach (['theme-1', 'theme-2', 'theme-3', 'theme-4'] as $color) @endforeach
{{ __('Sidebar settings') }}

{{ __('Layout settings') }}

@endsection