{{-- Core CSS Files --}} @if($locale == 'en') @else @endif {{-- Fonts --}} @if($locale == 'en') @elseif($locale == 'ar') @endif {{-- Main CSS --}} @if($locale != 'en') @endif @if($locale == 'ar') @elseif($locale == 'ku') @endif

{{ $section->title }}

{!! $section->text !!}
@csrf
@include('web.components.inputs.input', ['type' => 'number', 'label' => trans('text.amount-to-withdraw').':', 'placeholder' => trans('text.please-specify'), 'name' => 'amount', 'required' => true])
@include('web.components.inputs.input', ['label' => trans('text.beneficiary').':', 'name' => 'beneficiary', 'value' => $user->first_name . ' ' . $user->last_name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.country-of-birth').':', 'name' => 'country_of_birth', 'value' => $user->CountryOfBirth->name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.city-of-residence').':', 'name' => 'city_of_residence', 'value' => $user->city_of_residence, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.street').':', 'name' => 'street', 'value' => $user->street, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.building').':', 'name' => 'building', 'value' => $user->building, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.phone-number').':', 'name' => 'phone', 'value' => $user->phone_number, 'readonly' => true])