@extends('admin.layouts.master') @section('title', __('General Settings')) @section('has-content-sidebar', 'has-content-sidebar') @section('content-sidebar') @include('admin.settings.content-sidebar') @endsection @php $regFieldsMap = [ [ 'label' => __('Phone Number'), 'name' => 'profile_phone', 'default' => 'no', ], [ 'label' => __('Date of Birth'), 'name' => 'profile_dob', 'default' => 'no', ], [ 'label' => __('Country'), 'name' => 'profile_country', 'default' => 'no', ] ]; @endphp @section('content')

{{ __('General Settings') }}

{{ __('Global settings of the application that you can manage easily.') }}

{{ __('Timezone and Format') }}
{{ __('Set timezone on application.') }}
{{ __('Set date format to display date.') }}
{{ __('Set time format to display time.') }}
{{ __('Decimal Option') }}
{{ __('Number of decimal maintain in system calculation.') }}
{{ __('Fiat Currency') }} {{ __('(2 to 6 accepted; default: 2)') }}
{{ __('Crypto Currency') }} {{ __('(4 to 12 accepted; default: 6)') }}
{{ __('Usually use to display account balance.') }}
{{ __('Fiat Currency') }} {{ __('(1 to 4 accepted; default: 2)') }}
{{ __('Crypto Currency') }} {{ __('(4 to 8 accepted; default: 4)') }}
@csrf
{{ __('Language Settings') }}
{{ __('Set default language on application.') }}
{{ __("Admin Panel") }}
{{ __("User Panel") }}
{{ __('Display a switcher to quick switch language.') }}
@csrf
{{ __('Country Settings') }}
{{ __('Allow or disallowed the countries into application.') }}
{{ __('Specify the country do you want to display or hide from the list.') }}
@csrf
{{ __('Registration Option') }}
{{ __('Enable or disable registration from site.') }}
{{ __("Select whatever you need for user registration.") }}
    @foreach($regFieldsMap as $field)
  • {{ $field['label'] }}
  • @endforeach
{{ __('Required email verification after registration.') }}
{{ __('Users able to invite people using their referral id.') }}
{{ __('Maintanance') }}
{{ __('Enable to make website make offline.') }}
{{ __('Specify the email address of your website.') }}
{{ __('Admin Login on maintenance mode:') }} {{ url('/admin/login') }}
@csrf
@endsection