From 26fbbf92ceb12322e80b537bff0008150692639c Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 7 Apr 2019 13:06:16 -0600 Subject: [PATCH] Add passport authorize view --- .../views/vendor/passport/authorize.blade.php | 94 +++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 resources/views/vendor/passport/authorize.blade.php diff --git a/resources/views/vendor/passport/authorize.blade.php b/resources/views/vendor/passport/authorize.blade.php new file mode 100644 index 000000000..7eeae354f --- /dev/null +++ b/resources/views/vendor/passport/authorize.blade.php @@ -0,0 +1,94 @@ + + + + + + + + {{ config('app.name') }} - Authorization + + + + + + + +
+
+
+
+ +
+
+
+ Authorization Request +
+
+ +

{{ $client->name }} is requesting permission to access your account.

+ + + @if (count($scopes) > 0) +
+

This application will be able to:

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