@extends(activeTemplate() .'layouts.user') @section('content')

{{__($page_title)}}

@if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif
@lang('Current Balance') : @if($type == 'money') @php $cur_text = $general->cur_text;$balance=$withdraw->wallet->balance; @endphp {{ formatter_money($withdraw->wallet->balance)}} {{ $general->cur_text }} @elseif($type == 'coins') @php $cur_text = 'BTCE';$balance=auth()->user()->coins->coins; @endphp {{auth()->user()->coins ? auth()->user()->coins->coins: 0}} BTCE @else @php $cur_text = 'BET';$balance=auth()->user()->tokens->tokens; @endphp {{auth()->user()->tokens ? auth()->user()->tokens->tokens: 0}} BET @endif
{{$cur_text}}
{{$cur_text}}
{{ $cur_text }}
{{ $cur_text }}
{!!$withdraw->method->description!!}
@csrf @foreach(json_decode($withdraw->detail) as $k=> $value)
@endforeach
@endsection @section('load-js') @stop @section('script') @stop