@php $profile = getUser(); @endphp @extends($_layout.'master') @section('title', 'Thông tin tài khoản ngân hàng') @section('show_sidebar', 1) @section('content')
@if (count($userBankList)) @foreach ($userBankList as $item) @endforeach @endif
# Ngân hàng Chi nhánh Người thụ hưởng Số tài khoản Del
{{$item->id}} {{$item->bank->name}} {{$item->bank->branch}}
Ngân hàng: {{$item->bank->name}}
Chi nhánh: {{$item->bank->branch}}
Người thụ hưởng: {{$item->account_name}}
Số tài khoản: {{$item->account_number}}
{{$item->account_name}}
{{$item->account_number}}
@if (count($userBankList)) {{$userBankList->links($_template.'pagination')}} @endif
{!! html_input([ 'type' => 'select', 'name' => 'bank_name', 'id' => 'bank-name', 'className' => 'form-control', 'data' => ['' => 'Chọn ngân hàng'] + get_bank_options([], null, 'name', 'name'), 'required' => 'true' ]) !!}
Vui lòng chọn ngân hàng.
{!! html_input([ 'type' => 'select', 'name' => 'bank_area', 'id' => 'bank-area', 'className' => 'form-control' ]) !!}
Vui lòng Khu vực.
{!! html_input([ 'type' => 'select', 'name' => 'bank_id', 'id' => 'bank-id', 'className' => 'form-control', 'required' => 'true' ]) !!}
Vui lòng chọn Chi nhánh.
Vui lòng Nhập tên người thụ hưởng.
Vui lòng Nhập số tài khoản.
@endsection @section('js') @endsection