Questions tagged [jetstream]

Laravel Jetstream is an application starter kit for Laravel. Jetstream provides the following features for your application:

  • login
  • registration
  • email verification
  • two-factor authentication
  • session management
  • API via Laravel Sanctum

Documentation at jetstream.laravel.com.

214 questions
11
votes
2 answers

Laravel Jetstream Inertia Shared Global App Data

I want to share something I figured out since there's not much info out there (that I couldn't find). Laravel 8 with Jetstream Inertia has a few shared objects, like user, current route... You can access them in your components using the $page…
phoenix
  • 1,253
  • 15
  • 9
8
votes
2 answers

Laravel 8 Jetstream: adding new field to the registration process

I started building a web application using Laravel 8. I have noticed that quite a lot of things have changed in Laravel 8 including authentication. Now, I am trying to use Jetstream for auth. I have run the following command to integrate it into the…
Wai Yan Hein
  • 9,841
  • 21
  • 103
  • 244
5
votes
4 answers

how can I use bootstrap instead of tailwind CSS in vue.js welcome component

I install jetstream+inertia.js into my laravel project and everything is working perfectly but I need to use bootstrap 5 in only welcome. vue component so how can I handle it? My app.js file; require('./bootstrap'); // Import modules... import…
Orhan
  • 443
  • 3
  • 17
5
votes
0 answers

How to undo Inertia.js from my Laravel app

I have a problem with undoing Inertia.js in my application. When I started my application, I accidentally typed both commands. php artisan jetstream:install inertia--teams After a while when I saw that Livewire would be more suitable for my…
Domzi27
  • 53
  • 4
5
votes
1 answer

How to install Vuetify in Laravel 8 with jetstream-inertia?

I'm trying to install Vuetify on the latest Laravel versione (8) but I cannot do it. Seems it doesn't work even if the console doesn't show me any error. That's my resource/plugins/vuetify.js import Vue from 'vue' // import Vuetify from…
netnull
  • 87
  • 2
  • 5
5
votes
4 answers

How to change Jetstream logo in Laravel 8?

I installed Laravel 8 with Jetstream authentication. Now I want to change the login components, specifically the logo. Where are these components placed?
skm
  • 1,500
  • 1
  • 8
  • 17
5
votes
14 answers

Laravel 8 Jetstream profile-photos not showing

Laravel 8 and jetstream, is it really new? I just tried installing and playing it in fortify but I can't really understand why my profile photo not showing a picture. update-profile-information-form
4
votes
2 answers

The Mix manifest does not exist - Laravel Fortify Jetstream Login/Registration Issue when deploying laravel in Hostgator shared hosting

I have been able to deploy Laravel projects successfuly in the past. For the first time I am using Laravel 8 with Jetstream and Livewire. Laravel is now using Fortify for login and registration auth. My local server works perfect, no issues. After…
toolnin
  • 121
  • 10
4
votes
3 answers

Laravel 8.15.0/Jetstream - How to register new blades x-jet-newblade?

I am just doing my very first steps with Laravel 8 and found a problem that I can not solve. /var/www/html/laravel/resources/views/dashboard.blade.php:
operator
  • 45
  • 1
  • 6
4
votes
3 answers

Laravel localization and routes from Jetstream / Fortify

I have this new Laravel project to work on. We would like to make it available in multiple languages. I started the project with JetStream. Routes for authentication and such are automatically handled by JetStream / Fortify. I then added…
4
votes
2 answers

Laravel Fortify Return Inertia::render() instead of a blade view

I'm currently building a SPA with vue and installed jetstream (that comes with fortify) and using inertiajs to get my vue components. Is there a way to use inertia::render('') when i use Fortify::loginView()?
3
votes
0 answers

How to use Jetstream authentication in SPA powered by Vue without using inertia and laravel router?

I am creating a Single Page Application using Laravel 8, Vue and Sanctum for API. If I use Jetstream for authentication, there is compulsory to use another js Inertia and according to documentation it's saying "you will use Laravel's router instead…
3
votes
3 answers

How do I authenticate a user in Laravel 8 Jetstream only if his status is active?

I am building a Laravel 8 application and have successfully implemented authentication. Now I want to check if a user's status is active before logging him in. I have added a field in the users table username varchar password varchar .... status…
3
votes
1 answer

Can't install Jetstream package to Laravel project

I use Laravel 8 framework. PHP version is 7.4. After running command composer require laravel/jetstream I have some errors: Your requirements could not be resolved to an installable set of packages. Problem 1 - laravel/jetstream 1.x-dev requires…
3
votes
2 answers

Laravel Jetstream Vue mixin route

In a new Laravel project created by the installer with the Jetstream option resources/js/app.js has a line that reads: Vue.mixin({ methods: { route } }); PHPStorm reports that route is an unresolved variable or type. This happens, PHPStorm can be…
ToothlessRebel
  • 2,716
  • 4
  • 34
  • 46
1
2 3
14 15