@extends('layouts.app') @section('title') {{ __('Setting') }} @endsection @section('admin') active @endsection @section('section.header')

{{ __('Cài đặt rút tiền') }}

@endsection @section('section.content')
@can('setting_withdraw')
@if (Session::has('success'))
{{ Session::get('success') }}
@endif @if (Session::has('error'))
{{ Session::get('error') }}
@endif
{{ __('Cài đặt mã bảo mật') }}
@method('PUT') @csrf
@error('secret_code') * {{ $message }} @enderror
{{ __('Cài đặt tài khoản nhận') }}
@csrf
@error('bank_account') * {{ $message }} @enderror
@error('bank_name') * {{ $message }} @enderror
{{ __('Danh sách tài khoản nhận') }}
@foreach ($bankAccounts as $item) @endforeach
{{ __('Ngân hàng') }} {{ __('Số tài khoản') }} {{ __('Chủ tài khoản') }} {{ __('Người tạo') }} {{ __('Thời gian thêm') }} {{ __('operation') }}
{{ $item->bank_name }} {{ $item->acc_no }} {{ $item->acc_name }} {{ $item->admin_create }} {{ $item->created_at }}
@csrf @method('DELETE')
@else

Bạn không được quyền thực hiện tính năng này

@endcan
@endsection @section('scripts') @endsection @section('styles') @endsection