├── .gitignore ├── .vitepress ├── config.ts └── theme │ └── index.ts ├── examples.md ├── package.json ├── prettier.config.js ├── src ├── building-your-app.md ├── concept-overview.md ├── features │ ├── api.md │ ├── authentication.md │ ├── browser-sessions.md │ ├── index.md │ ├── password-confirmation.md │ ├── password-update.md │ ├── profile-management.md │ ├── registration.md │ ├── teams.md │ └── two-factor-authentication.md ├── index.md ├── installation.md ├── introduction.md ├── public │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── img │ │ ├── api.png │ │ ├── authentication.png │ │ ├── browser-sessions.png │ │ ├── login.png │ │ ├── modal-confirm.png │ │ ├── preview-2.png │ │ ├── preview-3.png │ │ ├── preview.png │ │ ├── profile-management.png │ │ ├── redirect-confirm.png │ │ ├── security.png │ │ ├── team-switcher.png │ │ └── teams.png │ ├── logo-dark.svg │ └── logo.svg └── stacks │ ├── index.md │ ├── inertia.md │ └── livewire.md └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/.vitepress/config.ts -------------------------------------------------------------------------------- /.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/examples.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/building-your-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/building-your-app.md -------------------------------------------------------------------------------- /src/concept-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/concept-overview.md -------------------------------------------------------------------------------- /src/features/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/api.md -------------------------------------------------------------------------------- /src/features/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/authentication.md -------------------------------------------------------------------------------- /src/features/browser-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/browser-sessions.md -------------------------------------------------------------------------------- /src/features/index.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/features/password-confirmation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/password-confirmation.md -------------------------------------------------------------------------------- /src/features/password-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/password-update.md -------------------------------------------------------------------------------- /src/features/profile-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/profile-management.md -------------------------------------------------------------------------------- /src/features/registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/registration.md -------------------------------------------------------------------------------- /src/features/teams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/teams.md -------------------------------------------------------------------------------- /src/features/two-factor-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/features/two-factor-authentication.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/installation.md -------------------------------------------------------------------------------- /src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/introduction.md -------------------------------------------------------------------------------- /src/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/apple-touch-icon.png -------------------------------------------------------------------------------- /src/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/favicon-16x16.png -------------------------------------------------------------------------------- /src/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/favicon-32x32.png -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/favicon.ico -------------------------------------------------------------------------------- /src/public/img/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/api.png -------------------------------------------------------------------------------- /src/public/img/authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/authentication.png -------------------------------------------------------------------------------- /src/public/img/browser-sessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/browser-sessions.png -------------------------------------------------------------------------------- /src/public/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/login.png -------------------------------------------------------------------------------- /src/public/img/modal-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/modal-confirm.png -------------------------------------------------------------------------------- /src/public/img/preview-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/preview-2.png -------------------------------------------------------------------------------- /src/public/img/preview-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/preview-3.png -------------------------------------------------------------------------------- /src/public/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/preview.png -------------------------------------------------------------------------------- /src/public/img/profile-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/profile-management.png -------------------------------------------------------------------------------- /src/public/img/redirect-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/redirect-confirm.png -------------------------------------------------------------------------------- /src/public/img/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/security.png -------------------------------------------------------------------------------- /src/public/img/team-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/team-switcher.png -------------------------------------------------------------------------------- /src/public/img/teams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/img/teams.png -------------------------------------------------------------------------------- /src/public/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/logo-dark.svg -------------------------------------------------------------------------------- /src/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/public/logo.svg -------------------------------------------------------------------------------- /src/stacks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/stacks/index.md -------------------------------------------------------------------------------- /src/stacks/inertia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/stacks/inertia.md -------------------------------------------------------------------------------- /src/stacks/livewire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/src/stacks/livewire.md -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream-docs/HEAD/tailwind.config.js --------------------------------------------------------------------------------