@extends('admin.layout') @section('content')

用户ID

{{ $data['id'] or ''}}

登录名

{{ $data['username'] or ''}}

姓名

{{ $data['real_name'] or ''}}

密码

{{ $data['password'] or ''}}

EMAIL

{{ $data['email'] or ''}}

手机号

{{ $data['mobile'] or ''}}

用户头像

{{ $data['avatar'] or ''}}

性别,1:男,2:女,参照数据字典

{{ $data['gender'] or ''}}

居住地址省

{{ $data['province'] or ''}}

居住地址市

{{ $data['city'] or ''}}

居住地址区县

{{ $data['county'] or ''}}

工作类型:上班,自由职业者

{{ dict()->get('user_info','work_type',$data['work_type']) }}

详细地址

{{ $data['address'] or ''}}

居住时长

{{ dict()->get('user_info','address_time',$data['address_time']) }}

身份证号

{{ $data['idcard'] or ''}}

身份证正面

{{ $data['idcard_positive'] or ''}}

身份证背面

{{ $data['idcard_back'] or ''}}

学历

{{ $data['educational'] or ''}}

婚姻状况

{{ dict()->get('user_info','marital',$data['marital']) }}

最后一次登录时间

{{ $data['last_login_time'] or ''}}

直系亲属联系人关系

{{ dict()->get('user_info','contact_bind',$data['contact_bind']) }}

直系亲属联系人姓名

{{ $data['contact_name'] or ''}}

直系亲属联系人手机

{{ $data['contact_mobile'] or ''}}

其他联系人关系

{{ dict()->get('user_info','other_contact_bind',$data['other_contact_bind']) }}

直系亲属联系人姓名

{{ $data['other_contact_name'] or ''}}

直系亲属联系人手机

{{ $data['other_contact_mobile'] or ''}}

创建时间

{{ $data['created_at'] or ''}}

更新时间

{{ $data['updated_at'] or ''}}

删除时间

{{ $data['deleted_at'] or ''}}

@endsection