@extends('lms::installer.layout') @section('content')
@if (request()->is('install'))

Welcome to the EduLab Application Installer!

We understand the value of your time and the importance of a seamless installation experience. That's why we've designed a user-friendly installer to make setting up EduLab effortless. Say goodbye to complex setups and hello to a streamlined, intuitive process. Let’s get started and bring your learning platform to life in just a few simple steps!

@endif @if (request()->is('install/requirements'))

Server Requirements

@if (isset($phpSupportInfo, $requirements)) @include('lms::installer.requirements', [ 'phpSupportInfo' => $phpSupportInfo, 'requirements' => $requirements, ]) @endif
@endif @if (request()->is('install/permission'))

Permission

@if (isset($permissions)) @include('lms::installer.permission', [ 'permissions' => $permissions, ]) @endif
@endif @if (request()->is('install/environment'))
@csrf

Environment Settings

App debug :
@endif @if (request()->is('install/license'))
@csrf

Verify Licencse Code

@endif @if (request()->is('install/database'))
@csrf

Database Connection

@endif @if (request()->is('install/import-demo'))

Demo Content Import

@endif @if (request()->is('install/final'))
@if (request()->is('install/final'))

🎉 Congratulations!

You're All Set Up and Ready to Go!

Your {{ env('APP_NAME') }} setup is complete, and you're now ready to experience the seamless benefits it brings. We applaud you for taking this step, and we're thrilled to have you on board.

Admin:

Email: admin@gmail.com

Password: 123456

@if (isset($totalUser) && $totalUser)

Student:

Email: student@gmail.com

Password: 123456

@endif
@if (isset($totalUser) && $totalUser)

Organization:

Email: organization@gmail.com

Password: 123456

Instructor:

Email: instructor@gmail.com

Password: 123456

@endif @endif
@endif
@endsection