/laravel-task

A pure Laravel application that joins some of the built in Laravel features.

Primary LanguagePHP

A pure laravel application that joins some of the built in laravel features.
 Login authentication
 Registration
 Reset password with email notification
 Admin/Approve user
 Upload Image
 ToDo list with CRUD functionality
 Account Lockout if 3 consecutive incorrect login data with email notification
 Update data in Profile Page with sometimes validation

user: admin@admin.com password: admin

Set your .env mail:

MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
MAIL_USERNAME=(your_email)
MAIL_PASSWORD=(your_email_password)
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"

composer install
php artisan migrate