@extends('oauth.layout') @section('title', '授权确认') @push('styles') @endpush @section('content')
@if($client->logo_url) @else
{{ mb_substr($client->name, 0, 1) }}
@endif
{{ $client->name }}
请求获取以下权限
该应用将获得以下权限:
    @foreach($scopeDetails as $key => $scopeConfig) @if($key !== 'base')
  • {{ $scopeConfig['name'] }}
    {{ $scopeConfig['description'] }}
  • @endif @endforeach
@csrf
授权后,{{ $client->name }} 将获得上述权限。
您可以随时在账户设置中取消授权。
@endsection @push('scripts') @endpush