Bismillah
this time I can still write an article that hopefully can be useful for friends who read...
As the title implies, I want to share a lit...
For further actions, you may consider blocking this person and/or reporting abuse
Thanks for the post!
One remark on the "Change the Minimum Requirement Password" part
you should never mess with your vendor files unless you are pushing them to production.
Here's how you can customize the minimum requirement:
jetstream.laravel.com/1.x/features...
Yeah .. Thanks for reminding .. 👌
I'm facing the same issue, but that Jetstream documentation is unclear for me.
Can you please help me where to put there codes like "(new Password)->length(10)"?
You can do that in "App\Actions\Fortify\PasswordValidationRules" where you will find a "passwordRules" method
An in that, I can see one line:
return ['required', 'string', new Password, 'confirmed'];
Where should I put the suggested "(new Password)->length(10)", for example?
protected function passwordRules()
you need to add the following
I used the following code;
<?php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
use Laravel\Fortify\Fortify;
class LoginController extends Controller
{
public function authenticate(Request $request)
{
}
But it doesn't work. Where am I going wrong?
Maybe your login form action is not making a request to your LoginController?
Well. It's good you trying it on newer version. unfortunatly i havent tried yet. I hope someone will definitly answer this.
Are you routing the controller correctly?
If there is an error what is the error?
You should override the properties on the vendor class, it includes a setter ->
Hi, very good!
If I want to have two places to authenticate the user? how would it be?
Thanks for the post! nice article Abdullah.
I have a question: Can i specify multiple guards in fortify? by default it uses web guard, but what if i have and admin in my Auth config and wants to make use of it with fortify? any ideas?
Dude! You are awesome! I spent days trying to find answers on Stackoverflow and Laracast and you solved all my questions in a condensed yet wonderful post!
Thanks a lot!
What about RegisterController? Can u please clear it like i did for loginController...
Thanks a lot for article! But can you explain how to make custom register (for instance we want to use several models User,Admin)?
how about creating remember me token when login. I want to manualy create theme