@extends('layouts.client_template') @section('content')

Withdraw

Claim your rewards. Withdraw your earnings with ease and efficiency from the Forex market.

@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if (Session::has('alert-' . $msg)) @endif @endforeach

Send withdraw request


{{ csrf_field() }}
@if ($errors->has('bankaccount')) {{ $errors->first('bankaccount') }} @endif
@if ($errors->has('mtid')) {{ $errors->first('mtid') }} @endif
$
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('note')) {{ $errors->first('note') }} @endif

Withdraw Request List


@if (count($deposit) > 0) @foreach ($deposit as $depositdata) @endforeach @endif
Bank Account Vertex Id Amount Note Status Action
{{ $depositdata->bankaccount }} {{ $depositdata->mt5id }} {{ $depositdata->amount }} {{ $depositdata->note }} @if ($depositdata->status == '0') @elseif($depositdata->status == '1') @elseif($depositdata->status == '2') @endif @if ($depositdata->status == '0') Cancel @endif
@endsection