@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)}}

@endsection