From 029688a594acad10ef81670e6149e7fe9cc94509 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 4 Feb 2018 08:16:37 +0100 Subject: [PATCH] Passport auth view. --- .../views/vendor/passport/authorize.blade.php | 91 +++++++++++++++++++ 1 file changed, 91 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 0000000000..7dcc9b4ade --- /dev/null +++ b/resources/views/vendor/passport/authorize.blade.php @@ -0,0 +1,91 @@ + + + + + + + + {{ 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->description }}
  • + @endforeach +
+
+ @endif + +
+ +
+ {{ csrf_field() }} + + + + +
+ + +
+ {{ csrf_field() }} + {{ method_field('DELETE') }} + + + + +
+
+
+
+
+
+
+ +