@php $profile = getUser(); $u = isset($user)?$user:crazy_arr(); $txt = $u->id?'Cập nhật':'Thêm'; @endphp @extends($_layout.'admin') @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
@include($_theme.'forms.templates.radio', [ 'name' => 'type', 'value' => old('type', $u->type?$u->type:'user'), 'data' => [ 'user' => 'Người chơi', 'agency' => 'Đại lý cấp ' . ($profile->agency_level+1), 'admin' => 'Admin' ] ])
{!! 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"}}
@endsection