Search code examples
laravel-5laravel-passport

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?


Solution

  • 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.