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

Add Bank Details

{{ csrf_field() }}
@if ($errors->has('userid')) {{ $errors->first('userid') }} @endif
@if ($errors->has('account_name')) {{ $errors->first('account_name') }} @endif
@if ($errors->has('account_no')) {{ $errors->first('account_no') }} @endif
@if ($errors->has('confirm_account_no')) {{ $errors->first('confirm_account_no') }} @endif
@if ($errors->has('bank_trx_code')) {{ $errors->first('bank_trx_code') }} @endif
@if ($errors->has('bank_name')) {{ $errors->first('bank_name') }} @endif
@if ($errors->has('bank_address')) {{ $errors->first('bank_address') }} @endif
@if ($errors->has('bankcountry')) {{ $errors->first('bankcountry') }} @endif
@if(count($BankDetails) > 0)

Bank Details List

@if(count($BankDetails) > 0) @foreach($BankDetails as $BankDetail) @endforeach @endif
Account Name Account No. International Bank Acct Num Bank TRX Code Bank Name Bank Address Bank Country
{{ $BankDetail->account_name }} {{ $BankDetail->account_no }} {{ $BankDetail->iban }} {{ $BankDetail->ifsc }} {{ $BankDetail->branch_name }} {{ $BankDetail->bankaddr }} {{ $BankDetail->bankcountry }}
@endif
@endsection