@extends(config('template.admin.view') . '.layout.layout') @if(isset($title)) @section('title', $title) @endif @section('head') @parent @endsection @section('content')
{{__('main.General')}}
@if($admin->hasPermission('general-settings-management')) @endif
@foreach ($settings as $group => $options)
@foreach ($options as $name => $option) @if ($option['type'] === 'text' || $option['type'] === 'number' )
{{ $option['description'] }}
@elseif ($option['type'] === 'textarea')
{{ $option['description'] }}
@elseif ($option['type'] === 'checkbox')

{{ $option['description'] }}
@elseif ($option['type'] === 'select')
{{ $option['description'] }}
@endif @endforeach
@endforeach
@endsection @section('js') @parent @endsection