@extends('layouts.app')
@section('content')
Dashboard
@if ($missingSettings->isNotEmpty())
Some app settings are missing!
@foreach ($missingSettings as $key)
- {{ ucwords(str_replace('_', ' ', $key)) }} is not set
@endforeach
Edit Settings
@else
@endif
@endsection
@section('script')
@endsection