step0.blade.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @extends('backend.layouts.blank')
  2. @section('content')
  3. <div class="container pt-5">
  4. <div class="row">
  5. <div class="col-xl-6 mx-auto">
  6. <div class="card">
  7. <div class="card-body">
  8. <div class="mar-ver pad-btm text-center">
  9. <h1 class="h3">Active eCommerce CMS Installation</h1>
  10. <p>You will need to know the following items before proceeding.</p>
  11. </div>
  12. <ol class="list-group">
  13. <li class="list-group-item text-semibold"><i class="la la-check"></i> Codecanyon purchase code</li>
  14. <li class="list-group-item text-semibold"><i class="la la-check"></i> Database Name</li>
  15. <li class="list-group-item text-semibold"><i class="la la-check"></i> Database Username</li>
  16. <li class="list-group-item text-semibold"><i class="la la-check"></i> Database Password</li>
  17. <li class="list-group-item text-semibold"><i class="la la-check"></i> Database Hostname</li>
  18. </ol>
  19. <p class="mt-3">
  20. During the installation process, we will check if the files that are needed to be written
  21. (<strong>.env file</strong>) have
  22. <strong>write permission</strong>. We will also check if <strong>curl</strong> are enabled on your server or not.
  23. </p>
  24. <p>
  25. Gather the information mentioned above before hitting the start installation button. If you are ready....
  26. </p>
  27. <br>
  28. <div class="text-center">
  29. <a href="{{ route('step1') }}" class="btn btn-primary">
  30. Start Installation Process
  31. </a>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. @endsection