@extends('layouts.app') @section('title', 'SMS Settings') @section('content')

SMS Settings

@if(session('success'))
{{ session('success') }}
@endif
@csrf @php $idx = 0; @endphp @forelse ($groups as $group => $configs)
{{ $group }}
@foreach ($configs as $config)
@if($config->description)
{{ $config->description }} @endif
@php $idx++; @endphp @endforeach
@empty
No SMS configurations found. Use the form below to add a new setting.
@endforelse
{{-- Add New Config --}}
Add New Setting
@csrf
@endsection