@extends('layouts.app') @section('title', '认证') @section('content')

@if (isset($data['module']) && !is_null($data['module'])) ) 模块:{{ $data['module']['name'] }} @elseif (isset($data['applications']) && !is_null($data['application'])) 应用程序:{{ $data['application']['name'] }} @elseif (isset($data['from_user']) && !is_null($data['from_user'])) 来自用户:{{ $data['from_user']['name'] }} @else 一个第三方的应用程序 @endif 想要获取你的用户信息。

{{ $data['meta']['description'] }}


在您同意后,您的 ID, UUID, 昵称, 邮件信息 和 实人认证成功的时间(不包含个人信息), 余额, 用户组 ID 将会被发送给它们。 @if ($data['meta']['require_token'])
你的 Token 将会新建一个,并发送给它们。 @endif

@auth('web')
@csrf
@else

在继续之前,请先登录注册

@endauth @endsection