@extends('user.layout.base') @section('title', 'Profile ') @section('content')

@lang('user.profile.general_information')

@include('common.notify')
@lang('user.profile.first_name')

{{Auth::user()->first_name}}

@lang('user.profile.last_name')

{{Auth::user()->last_name}}

@lang('user.profile.email')

{{Auth::user()->email}}

@lang('user.profile.mobile')

{{Auth::user()->mobile}}

@lang('user.profile.wallet_balance')

{{currency(Auth::user()->wallet_balance)}}

@lang('user.profile.language')
@php($language=get_all_language())

@if(!empty($language[Auth::user()->language])) {{$language[Auth::user()->language]}} @else {{$language['en']}} @endif

@lang('user.profile.country_code')

{{Auth::user()->country_code}}

@lang('user.profile.qr_code')
@endsection