@php $profile = getUser(); $u = isset($user)?$user:crazy_arr(); $txt = $u->id?'Cập nhật':'Thêm'; @endphp @extends($_layout.'master') @section('show_sidebar', 1) @section('title', 'Thông tin người dùng') @section('header_title', 'Người dùng') @section('content')
{{$txt}} người dùng
@csrf
{{$name?$name:"Không được bỏ trống"}}
{{$email?$email:"Không được bỏ trống"}}
{{$username?$username:"Không được bỏ trống"}}
@if (!$u->id)
id?'': 'required'}}>
{{$password?$password:"Không được bỏ trống"}}
@endif
@if (is_null($max = setting('max_agency_level')) || $max > $profile->agency_level)
@include($_theme.'forms.templates.radio', [ 'name' => 'type', 'value' => old('type', $u->type?$u->type:'user'), 'data' => [ 'user' => 'Người chơi', 'agency' => 'Đại lý' ] ])
@else @endif
{!! html_input([ 'type' => 'select', 'name' => 'status', 'id' => 'status', 'class' => 'form-control ' . (($status = $errors->first('status'))?'is-invalid':''), 'default' => old('status', $u->status), 'data' => [ '200' => 'Đã kích hoạt', '0' => 'Chờ kích hoạt', '-1' => 'Khóa' ] ]) !!}
{{$status?$status:"Không được bỏ trống"}}
@if (!$u->id) @php extract($rates); $oldArea = old('area'); @endphp @if (count($areas))
Tỷ lệ cược
@foreach ($areas as $area)
@if (count($types)) @foreach ($types as $type) @if (count($type->notTrashedChildren))
{{$type->name}}
@foreach ($type->notTrashedChildren as $child)
{{$rate?$rate:"Không được bỏ trống"}}
@endforeach
@else
{{$rate?$rate:"Không được bỏ trống"}}
@endif @endforeach @endif
@endforeach
@endif @endif
@endsection