diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php
index 092aa0313..42c5f2bfa 100644
--- a/resources/lang/en/texts.php
+++ b/resources/lang/en/texts.php
@@ -3222,4 +3222,6 @@ return [
'credit_card_invalid' => 'Provided credit card number is not valid.',
'month_invalid' => 'Provided month is not valid.',
'year_invalid' => 'Provided year is not valid.',
+
+ 'if_you_need_help' => 'If you need help you can either post to our',
];
diff --git a/resources/views/setup/_issues.blade.php b/resources/views/setup/_issues.blade.php
index 2dfe3e861..7baf31654 100644
--- a/resources/views/setup/_issues.blade.php
+++ b/resources/views/setup/_issues.blade.php
@@ -15,8 +15,9 @@
@foreach($check['extensions'] as $extension)
-
- {{ key($extension) }}
+
+ {{ key($extension) }}
+ {{ $extension[key($extension)] == true ? '✔' : '❌' }}
@endforeach
@@ -27,15 +28,17 @@
@if($check['php_version']['is_okay'])
-
- {{ strtoupper(ctrans('texts.ok')) }}!
+
+ {{ strtoupper(ctrans('texts.ok')) }}
+ ✔
@else
{{ ctrans('texts.minumum_php_version') }}: {{ $check['php_version']['minimum_php_version'] }}
-
- {{ ctrans('texts.current') }}: {{ $check['php_version']['current_php_version'] }}
+
+ {{ ctrans('texts.current') }}: {{ $check['php_version']['current_php_version'] }}
+ ❌
@endif
@@ -46,12 +49,14 @@
@if($check['env_writable'])
-
- {{ strtoupper(ctrans('texts.ok')) }}!
+
+ {{ strtoupper(ctrans('texts.ok')) }}
+ ✔
@else
-
- {{ ctrans('texts.env_not_writable') }}
+
+ {{ ctrans('texts.env_not_writable') }}
+ ❌
@endif
diff --git a/resources/views/setup/index.blade.php b/resources/views/setup/index.blade.php
index 5860bdf62..8d228fed9 100644
--- a/resources/views/setup/index.blade.php
+++ b/resources/views/setup/index.blade.php
@@ -7,16 +7,15 @@
@endpush
@section('body')
-