599 0 0 0
Last Updated : 2025-04-29 01:03:23
this snippet will teach you how to enable or disable jetstream or fortify features
To enable or disable any jetstream or fortify features just go to config/jetstream.php or config/fortify.php
Then jump to features sections and enable or disable waht you want from there
'features' => [
Features::registration(),
Features::resetPasswords(), // to disable just comment this
// Features::emailVerification(), // to enable just uncomment this
Features::updateProfileInformation(),
Features::updatePasswords(),
Features::twoFactorAuthentication([
'confirmPassword' => true,
]),
],