@extends('admin.layout.app') @section('title', 'Settings') @section('header')

Home - Settings

@endsection @section('content')
Settings
@csrf
@foreach ($settingsGroups as $tab => $sections)
{{ ucfirst($tab) }} Settings
@foreach ($sections as $section => $settings)
{{ ucfirst($section) }}
@foreach ($settings as $key => $setting)
@if ($setting['type'] === 'dropdown') @if ($setting->key === 'default_country_id') @endif @elseif($setting['type'] === 'password') @else @endif
@endforeach @endforeach
@endforeach
@endsection @section('script') @endsection