@extends('layouts.back-end.body') @section('content')

{{ __('message.customer') }} @if ($title) {{ __('message.setting') }} @endif


{{ __('message.general infomation') }}

{{ __('message.this section intro goes here. customer information detail') }}
Avatar
@foreach($customerPackages as $customerPackage) @if($customerPackage->is_completed) @elseif($customerPackage->is_stop) @else @endif @endforeach

{{ __('message.withdraw setting') }}

{{ __('message.the setting section introduces here. allowed admin setting customer open or close withdraw') }}
@csrf
@if(isset($row)) @if(isset($row->withdrawSetting->is_open) && $row->withdrawSetting->is_open == 1) @else @endif @else @endif
@if(isset($row)) @if(isset($row->withdrawSetting->continue_send) && $row->withdrawSetting->continue_send == 1) @else @endif @else @endif

@if (session('status'))
{{ session('status') }}
@endif @include('back-end.customer.message-withdraw') @endsection