{{--
=====================================================
Etebarit - by Gisoo Web Solutions
------------------------------------------------------
Gisoo.net
------------------------------------------------------
Copyright (c) 2026 Gisoo Web Solutions
=====================================================
This code is protected by copyright
=====================================================
File: index.blade.php
------------------------------------------------------
Use: The site-settings page: four tabs (general, gateway,
SMS, email), each its own form saving on its own. The
active tab follows the URL hash so a save returns to it.
=====================================================
--}}
@extends('layouts.admin')
@section('title', __('admin.settings.title'))
@php use App\Support\Format; @endphp
@section('breadcrumb')
@endsection
@php
// Shared field classes (kept here so every input reads the same).
$labelCls = 'mb-1.5 block text-[13px] font-bold';
$inputCls = 'w-full rounded-xl border-[1.5px] border-[#e3e1ec] bg-[#fbfbfd] px-3.5 py-3 text-sm outline-none transition focus:border-primary-600 focus:bg-white';
$ltrCls = $inputCls.' text-left';
@endphp
@section('page')
{{ __('admin.settings.title') }}
{{ __('admin.settings.subtitle') }}
{{ __('admin.settings.info') }}
{{-- Tabs --}}
@foreach (__('admin.settings.tabs') as $key => $label)
@endforeach
{{-- Panels --}}
{{-- ===== General ===== --}}
{{-- ===== Rules & defaults ===== --}}
{{-- ===== Gateway ===== --}}
{{-- ===== SMS ===== --}}
{{-- ===== Captcha (ArCaptcha) ===== --}}
{{-- ===== Email ===== --}}
{{-- Send the sample email to verify SMTP end to end (its own form). --}}
{{-- ===== Plugins ===== --}}
{{ __('admin.settings.plugins.heading') }}
{{ __('admin.settings.plugins.hint') }}
{{-- The official, built-in plugins: served from the app itself;
not operator-editable. Same list as the public docs page. --}}
@foreach (\App\Support\BuiltinPlugins::all() as $builtin)