@extends('admin.layouts.app')
@section('title', 'Settings')
@section('page-title', 'Settings')
@section('page-description', 'Manage system settings')
@section('content')
{{-- =========================================================
PAGE HEADER
========================================================== --}}
⚙️
System Settings
Control currency and amount display preferences
used across the application.
{{-- =========================================================
SUCCESS MESSAGE
========================================================== --}}
@if(session('success'))
{{ session('success') }}
@endif
{{-- =========================================================
VALIDATION ERRORS
========================================================== --}}
@if($errors->any())
Please check the following:
@foreach($errors->all() as $error)
-
{{ $error }}
@endforeach
@endif
{{-- =========================================================
CURRENCY & AMOUNT SETTINGS
========================================================== --}}
@endsection