@extends('layouts.app') @section('title', 'Platform Settings') @section('page-title', 'Platform Settings / CMS') @section('content')
@if(request()->route('group')) {{ ucfirst(str_replace('_',' ',request()->route('group'))) }} Settings @else All Settings @endif
@if(request()->route('group'))
@csrf @php $currentGroup = request()->route('group'); @endphp @if($currentGroup == 'general')
@elseif($currentGroup == 'email')
@elseif($currentGroup == 'sms')
@elseif($currentGroup == 'payment')
@elseif($currentGroup == 'receipt')
@elseif($currentGroup == 'landing_page')
@elseif($currentGroup == 'appearance')
@endif
@else

Select a settings group

Choose a group from the left sidebar to edit settings.

@endif
@endsection