@extends('web.layouts.main') @push('stylesheets') @endpush @section('content') @include('web.components.page-header', ['heading' => $section->title, 'subheading' => $section->text])
@if($section->title_left)

{{ $section->title_left }}

@endif
{!! $section->text_left !!}
{{--

{{ $section->title_right }}

{!! $section->text_right !!}
--}}
{{--

{{ $section->title_bottom }}

{!! $section->text_bottom !!}
--}} @if(Auth::guard('user')->check())
{{--

{{ $funds_nav_sections['send-wire-transfer']->title }}

{!! $funds_nav_sections['send-wire-transfer']->text !!}
@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'])
--}}

{{ $funds_nav_sections['check-withdrawal']->title }}

{!! $funds_nav_sections['check-withdrawal']->text !!}
@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])
@endif
@include('web.components.are-you-a-winner')
@include('web.components.shortcuts')
@endsection @push('scripts') @endpush