@extends('layouts.app') @section('head') @stop @section('content')
@lang('oauth.auth_request_title')

@lang('oauth.auth_request_msg',['appname' => $client->name])

@if (count($scopes) > 0)

@lang('oauth.scope_msg')

    @foreach ($scopes as $scope)
  • {{ $scope->description }}
  • @endforeach
@endif
{{ csrf_field() }}
{{ csrf_field() }} {{ method_field('DELETE') }}
@stop