@extends('web.pages.my-account.funds.main') @section('funds')
@csrf
@include('web.components.inputs.input', ['label' => trans('text.amount-to-withdraw').':', 'placeholder' => trans('text.please-specify'), 'name' => 'amount'])
@include('web.components.inputs.input', ['label' => trans('text.bank-name').':', 'placeholder' => trans('text.please-specify'), 'name' => 'bank_name'])
@include('web.components.inputs.input', ['label' => trans('text.branch-address').':', 'placeholder' => trans('text.please-specify'), 'name' => 'branch_address'])
@include('web.components.inputs.input', ['label' => trans('text.iban').':', 'placeholder' => trans('text.please-specify'), 'name' => 'iban'])
@include('web.components.inputs.input', ['label' => trans('text.swift-code').':', 'placeholder' => trans('text.please-specify'), 'name' => 'swift_code'])
@include('web.components.inputs.input', ['label' => trans('text.beneficiary').':', 'name' => 'beneficiary', 'value' => Auth::guard('user')->user()->first_name . ' ' . Auth::guard('user')->user()->last_name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.beneficiary-address').':', 'placeholder' => trans('text.please-specify'), 'name' => 'beneficiary_address'])
@endsection