@extends('common.user.layout.base') {{ App::setLocale( isset($_COOKIE['user_language']) ? $_COOKIE['user_language'] : 'en' ) }} @section('styles') @parent @stop @php $paymentConfig = json_decode( json_encode( Helper::getSettings()->payment ) , true); $cardObject = array_values(array_filter( $paymentConfig, function ($e) { return $e['name'] == 'card'; })); //print_r($cardObject);exit; $card = 0; $stripe_publishable_key = ""; if(count($cardObject) > 0) { $card = $cardObject[0]['status']; $stripePublishableObject = array_values(array_filter( $cardObject[0]['credentials'], function ($e) { return $e['name'] == 'stripe_publishable_key'; })); if(count($stripePublishableObject) > 0) { $stripe_publishable_key = $stripePublishableObject[0]['value']; } } @endphp @section('content') @include('common.user.includes.image-modal')
@lang('user.profile.profile_picture')

@lang('user.profile.wallet_balance')

account_balance_wallet

@lang('user.profile.first_name')
@lang('user.profile.last_name')
@lang('user.profile.email')
@lang('user.profile.mobile')
@lang('user.profile.otp')
@lang('user.profile.country')
@lang('user.profile.city')
@lang('user.profile.language')
@if(Helper::getDemomode() == 1)

** Demo Mode : {{ __('admin.demomode') }}

(*personal information hidden in demo)
@endif
@lang('user.profile.old_password')
@lang('user.profile.new_password')
@lang('user.profile.confirm_password')
@if($card==1)
@lang('user.add_card')
@endif
@lang('user.address')
@stop @section('scripts') @parent @stop