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

Welcome to the Empzio Application Installer!

We understand the value of your time and the need for a seamless installation experience. That’s why we’ve built a user-friendly installer that makes setting up Empzio effortless. Say goodbye to complex setups and hello to a smooth, intuitive process. Let’s get started and bring your job platform to life in just a few simple steps!

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

Server Requirements

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

Permission

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

Environment Settings

App debug :
@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 Access:

Email: admin@gmail.com

Password: 123456789

Company Access:

Email: company@gmail.com

Password: 123456789

Candidate Access:

Email: candidate@gmail.com

Password: 123456789

@endif
@endif
@endsection