@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.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.country-of-birth').':', 'name' => 'country_of_birth', 'value' => Auth::guard('user')->user()->CountryOfBirth->name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.city-of-residence').':', 'name' => 'city_of_residence', 'value' => Auth::guard('user')->user()->city_of_residence, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.street').':', 'name' => 'street', 'value' => Auth::guard('user')->user()->street, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.building').':', 'name' => 'building', 'value' => Auth::guard('user')->user()->building, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.phone-number').':', 'name' => 'phone', 'value' => Auth::guard('user')->user()->phone_number, 'readonly' => true])
@endsection