@extends('adminlte::page') @section('title', 'System Settings') @section('content')

System Configuration

@php $currentCategory = null; @endphp @foreach($configurations as $config) @if($currentCategory !== $config->category) @if($currentCategory !== null)
@endif

{{ ucfirst($config->category) }} Settings


@php $currentCategory = $config->category; @endphp @endif
@csrf @method('PUT')
@if($config->description) {{ $config->description }} @endif @if($config->key === 'occupation_options') Enter each occupation option on a new line @elseif($config->type === 'boolean') @else @endif
@if(!$loop->last)
@endif @endforeach @if($currentCategory !== null)
@endif
@stop