@foreach ($settings as $setting)
                @if (in_array($setting->key, ['external_supplier_api_auth_access', 'social_networks', 'layouts']) || Str::startsWith($setting->key, 'module_'))
                    @continue
                @endif
                
            @endforeach
            
                
                    
                        @if (isset($error))
                            {{ $error }}
                        @endif
                    
                 
             
         
        @php
            $externalSupplierApiAuthAccess = $settings->firstWhere('key', 'external_supplier_api_auth_access');
            $socialMedia = $settings->firstWhere('key', 'social_networks');
            $layouts = $settings->firstWhere('key', 'layouts');
            $moduleCatalogMode = $settings->firstWhere('key', 'module_catalog_mode');
            $moduleGoogleAuth = $settings->firstWhere('key', 'module_google_auth');
            $moduleServices = $settings->firstWhere('key', 'module_services');
            $modulePointsGamification = $settings->firstWhere('key', 'module_points_gamification');
            $moduleRating = $settings->firstWhere('key', 'module_rating');
            $moduleCoupon = $settings->firstWhere('key', 'module_coupon');
            $moduleFavorite = $settings->firstWhere('key', 'module_favorite');
            $moduleZone = $settings->firstWhere('key', 'module_zone');
            $moduleMap = $settings->firstWhere('key', 'module_map');
            $module360 = $settings->firstWhere('key', 'module_360');
            $moduleLocky = $settings->firstWhere('key', 'module_locky');
            $moduleAutomaticTranslations = $settings->firstWhere('key', 'module_automatic_translations');
            $moduleImage = $settings->firstWhere('key', 'module_image');
            $moduleBeacons = $settings->firstWhere('key', 'module_beacons');
        @endphp
        @if ($socialMedia)
            @include('layouts.components.social-media', ['data' => $socialMedia])
        @endif
        @if ($layouts)
            @include('cfg_system_settings.partials.layouts', ['data' => $layouts->value, 'fontData' => $fontData])
        @endif
        @if ($externalSupplierApiAuthAccess)
            @include('cfg_system_settings.partials.external-supplier-api-auth-access', ['data' => $externalSupplierApiAuthAccess])
        @endif
        @if ($moduleCatalogMode)
            @include('cfg_system_settings.partials.module-catalog-mode')
        @endif
        @if ($moduleGoogleAuth)
            @include('cfg_system_settings.partials.module-google-auth')
        @endif
        @if ($moduleServices)
            @include('cfg_system_settings.partials.module-services')
        @endif
        @if ($modulePointsGamification)
            @include('cfg_system_settings.partials.module-points-gamification')
        @endif
        @if ($moduleRating)
            @include('cfg_system_settings.partials.module-rating')
        @endif
        @if ($moduleCoupon)
            @include('cfg_system_settings.partials.module-coupon')
        @endif
        @if ($moduleFavorite)
            @include('cfg_system_settings.partials.module-favorite')
        @endif
        @if ($moduleZone)
            @include('cfg_system_settings.partials.module-zone')
        @endif
        @if ($moduleMap)
            @include('cfg_system_settings.partials.module-map')
        @endif
        @if ($module360)
            @include('cfg_system_settings.partials.module-360')
        @endif
        @if ($moduleLocky)
            @include('cfg_system_settings.partials.module-locky')
        @endif
         @if ($moduleAutomaticTranslations)
            @include('cfg_system_settings.partials.module-automatic-translations')
        @endif
        @if ($moduleImage)
            @include('cfg_system_settings.partials.module-image')
        @endif
        @if ($moduleBeacons)
            @include('cfg_system_settings.partials.module-beacons')
        @endif
        @if (count($settings) > 0)