@extends('layouts.app') @section('title', __('messages.settings') . ' - ' . __('messages.app_name')) @section('description', __('messages.settings') . ' - ' . __('messages.app_name')) @section('content') @php $lang = app()->getLocale(); $langNames = [ 'ar' => 'العربية', 'fr' => 'Français', 'en' => 'English', ]; $playStoreUrl = 'https://play.google.com/store/apps/details?id=com.app.lebuttn'; $instagramUrl = 'https://www.instagram.com/lebuttn/'; $facebookUrl = 'https://www.facebook.com/lebuttn/'; @endphp
{{-- ===== HEADER ===== --}}

{{ __('messages.settings') }}

{{-- ===== PROFILE SECTION (logged-out state by default; swapped on load if user is in localStorage) ===== --}}
{{ __('messages.welcome') }}
{{ __('messages.login_prompt') }}
{{-- Logged-in variant (hidden by default; shown by JS when localStorage has user) --}} {{-- ===== SECTION TITLE: GENERAL ===== --}}
{{ __('messages.general') }}
{{-- ===== SETTINGS CARD ===== --}}
{{-- Language --}}
{{-- Privacy policy --}} {{ __('messages.privacy_policy') }}
{{-- Terms & conditions --}} {{ __('messages.terms_conditions') }}
{{-- Contact us --}} {{ __('messages.contact_us') }}
{{-- Rate app --}} {{ __('messages.rate_app') }}
{{-- Clear cache --}}
{{-- ===== LOGOUT CARD (hidden by default; shown by JS when signed in) ===== --}} {{-- ===== FOLLOW US ===== --}}
{{ __('messages.follow_us') }}
{{-- Instagram --}} Instagram {{-- Facebook --}} Facebook
{{-- ===== LANGUAGE BOTTOM SHEET ===== --}} @push('scripts') @endpush @endsection