1. Go to this page and download the library: Download eren/lms library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Tell Fortify to use your package's views
Fortify::loginView(function () {
return view('lms::auth.login');
});
Fortify::registerView(function () {
return view('lms::auth.register');
});
// You can also customize other views like password reset, email verification, etc.
Fortify::requestPasswordResetLinkView(function () {
return view('lms::auth.forgot-password');
});
Fortify::resetPasswordView(function () {
return view('lms::auth.reset-password');
});