@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')
User Avatar

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

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

{{ __('My Wallet Balance') }}

{{ number_format(auth()->user()->wallet) }} {{config('payment.default_system_currency')}}

{{ __('Total Redeemed Codes') }}

{{ number_format($data['total']) }}

{{ __('Total Redeemed Amount') }}

{{ number_format($data['amount']) }} {{config('payment.default_system_currency')}}

@method('PUT') @csrf

{{ __('Redeem Gift Codes') }}

@csrf

{{ __('Transfer Your Wallet Balance to Friends') }}

@error('email')

{{ $errors->first('email') }}

@enderror
@error('amount')

{{ $errors->first('amount') }}

@enderror

{{ __('Redeemed Gift Cards') }}

{{ __('Gift Card') }} {{ __('Amount') }} {{ __('Status') }} {{ __('Redeemed On') }}

{{ __('Transfers') }}

{{ __('Transfer ID') }} {{ __('Sent To') }} {{ __('Amount') }} {{ __('Status') }} {{ __('Transfer Date') }}
@endsection @section('js') @endsection