@extends('super_admins.layouts.master') @section('title') {{ $heading }} @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content')

{{ $heading }}

@csrf @method('PUT')
@foreach ($theme_settings as $theme_code => $settings)
@if ($theme_code === 'custom') color-wheel @endif @if ($theme_code === 'theme_1') {{ $theme_code }} image @endif @if ($theme_code === 'theme_2') {{ $theme_code }} image @endif @if ($theme_code === 'default') {{ $theme_code }} image @endif
{{-- @if ($theme_code === 'custom') --}}

{{ ucwords(str_replace('_', ' ', $theme_code)) }}

@foreach ($settings as $theme_setting) @if ($theme_setting->type === 'color')

{{ $theme_setting->display_name }}

is_editable ? '' : 'disabled' }}>
@endif @endforeach
@endforeach
@endsection @section('scripts') @endsection