@extends('layouts.client_template') @section('content')
@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 Account 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