@extends('layouts.dashboard') @section('title', app()->getLocale() == 'ar' ? 'الإعدادات' : 'Settings') @section('page-content')

{{ app()->getLocale() == 'ar' ? 'إعدادات النظام' : 'System Settings' }}

@csrf
{{ app()->getLocale() == 'ar' ? 'إعدادات عامة' : 'General Settings' }}
{{ app()->getLocale() == 'ar' ? 'يُحفظ في: public/uploads/settings/' : 'Saved to: public/uploads/settings/' }} @if($settings['site_logo'])
@endif
{{ app()->getLocale() == 'ar' ? 'إعدادات المستخدمين' : 'User Settings' }}
{{ app()->getLocale() == 'ar' ? 'السماح للمستخدمين الجدد بإنشاء حسابات' : 'Allow new users to create accounts' }}
{{ app()->getLocale() == 'ar' ? 'يجب على المستخدمين التحقق من بريدهم قبل تسجيل الدخول' : 'Users must verify email before logging in' }}
{{ app()->getLocale() == 'ar' ? 'الافتراضي: 8 أحرف' : 'Default: 8 characters' }}
{{ app()->getLocale() == 'ar' ? 'الافتراضي: 120 دقيقة' : 'Default: 120 minutes' }}
{{ app()->getLocale() == 'ar' ? 'إعدادات البريد الإلكتروني' : 'Email Settings' }}
{{ app()->getLocale() == 'ar' ? 'إعدادات الأمان' : 'Security Settings' }}
{{ app()->getLocale() == 'ar' ? 'الافتراضي: 5 محاولات' : 'Default: 5 attempts' }}
{{ app()->getLocale() == 'ar' ? 'الافتراضي: 15 دقيقة' : 'Default: 15 minutes' }}
{{ app()->getLocale() == 'ar' ? 'سيتم حظر المستخدمين مؤقتاً بعد تجاوز الحد الأقصى لمحاولات تسجيل الدخول الفاشلة.' : 'Users will be temporarily locked out after exceeding maximum failed login attempts.' }}
{{ app()->getLocale() == 'ar' ? 'معلومات النظام' : 'System Information' }}

{{ app()->getLocale() == 'ar' ? 'إصدار Laravel:' : 'Laravel Version:' }} {{ app()->version() }}

{{ app()->getLocale() == 'ar' ? 'إصدار PHP:' : 'PHP Version:' }} {{ phpversion() }}

{{ app()->getLocale() == 'ar' ? 'البيئة:' : 'Environment:' }} {{ config('app.env') }}

{{ app()->getLocale() == 'ar' ? 'وضع التطوير:' : 'Debug Mode:' }} {{ config('app.debug') ? (app()->getLocale() == 'ar' ? 'مفعل' : 'Enabled') : (app()->getLocale() == 'ar' ? 'معطل' : 'Disabled') }}

@endsection