Laky
Laky

Reputation: 765

Laravel Passport view

I need to change the template for passport /oauth/authorize. This template is located in /vendor/laravel/passport/resources/views/authorize.blade.php. How to extend this template, and change html/css?

Upvotes: 0

Views: 2431

Answers (1)

Yusef
Yusef

Reputation: 144

Publish passport views: php artisan vendor:publish --tag=passport-views
So, The authorized.blade.php will be in resources/views/vendor/passport and you can extend or change it.

Upvotes: 3

Related Questions