diff --git a/resources/views/admin/diagnostics/home.blade.php b/resources/views/admin/diagnostics/home.blade.php
index a9aa3847..fc59a195 100644
--- a/resources/views/admin/diagnostics/home.blade.php
+++ b/resources/views/admin/diagnostics/home.blade.php
@@ -157,6 +157,34 @@
PHP INI file_uploads:
{{ ini_get('file_uploads') ? '✅' : '❌' }}
+
+ PHP INI - Security allow_url_fopen (false):
+ {{ ini_get('allow_url_fopen') ? '✅' : '❌' }}
+
+
+ PHP INI - Security allow_url_include (false):
+ {{ ini_get('allow_url_include') ? '✅' : '❌' }}
+
+
+ PHP INI - Security expose_php (false):
+ {{ ini_get('expose_php') ? '✅' : '❌' }}
+
+
+ PHP INI - Security display_errors (false):
+ {{ ini_get('display_errors') ? '✅' : '❌' }}
+
+
+ PHP INI - Security display_startup_errors (false):
+ {{ ini_get('display_startup_errors') ? '✅' : '❌' }}
+
+
+ PHP INI - Security log_errors (true):
+ {{ ini_get('log_errors') ? '✅' : '❌' }}
+
+
+ PHP INI - Security ignore_repeated_errors (false):
+ {{ ini_get('ignore_repeated_errors') ? '✅' : '❌' }}
+