@extends('layouts.admin') @section('title','System settings') @section('heading','System settings') @section('content')

Typed runtime configuration for SMR One. Secret values are encrypted and never rendered back to the browser.

@csrf @method('put') @foreach($groups as $group => $settings)
CONFIGURATION

{{ str($group)->replace('_',' ')->title() }}

{{ count($settings) }} settings
@foreach($settings as $setting)
@if($setting['type']==='text') @elseif($setting['type']==='select') @elseif($setting['secret'])@if($setting['configured'])@endif @else@endif @if($setting['updated_at'])Last changed {{ $setting['updated_at']->diffForHumans() }}@endif
@endforeach
@endforeach
@endsection