@extends('layouts.app') @push('title') {{ __('Setting') }} @endpush @section('content')

{{ __('Settings') }}

    @if (!empty(getOption('two_factor_googleauth_status')) && getOption('two_factor_googleauth_status') == STATUS_ACTIVE)
  • {{ __('Google Authentication (Recommended)') }}

    {{ __('Protect your account and transactions.') }}

    @if (auth()->user()->google_auth_status == 1) @else @endif
  • @endif
  • {{ __('Phone Number Verification') }}

    {{ auth()->user()->mobile }}

    @if (auth()->user()->phone_verification_status == 1) @else @endif
  • {{ __('Email Address verification') }}

    @if (auth()->user()->email_verification_status == 1) {{ auth()->user()->email }} @else {{ __('Protect your account and transactions.') }} @endif

    @if (auth()->user()->email_verification_status == 1) @else {{ __('Verify') }} @endif
  • @if(auth()->user()->is_alumni)
  • {{ __('Show Email Address In Public Profile') }}

    user()->show_email_in_public == STATUS_ACTIVE ? 'checked' : '' }} type="checkbox" role="switch" id="show-email-switch">
  • {{ __('Show Phone Number In Public Profile') }}

    user()->show_phone_in_public == STATUS_ACTIVE ? 'checked' : '' }} type="checkbox" role="switch" id="show-mobile-switch">
  • @endif

{{ __('Change Password') }}

{{ __('Change or reset your account password') }}

@csrf
@endsection @push('script') @endpush