@extends('admin.layouts.app') @section('content')
{{-- navbar - top --}} @include('admin.layouts.topbar')
{{-- navbar - side --}} @include('admin.layouts.nav')

{{ __('User - Add a Payment Transaction') }}

{{ __('Payment Details') }}

@csrf
{{ __('Name : ') }}{{ $user->name }}
{{ __('Account Type : ') }} @if ($user->user_type==0) {{ __('Customer') }} @elseif($user->user_type==1) {{ __('Taxi Owner') }} @endif
{{ __('Current Balance : ') }}{{ number_format($user->wallet_balance,2,'.','') }}
@error('amount') {{ $message }} @enderror
{{-- {{ __('Edit') }} --}} {{ __('Go Back') }}
@endsection @extends('admin.layouts.footer')