From 08b8ab6d4fc1e061bfeb159eb542f282892e2b23 Mon Sep 17 00:00:00 2001 From: Chris Hunt Date: Mon, 21 Jul 2025 10:10:13 +0100 Subject: [PATCH] Add misisng input type in the form builder --- app/Services/CustomFormBuilder.php | 7 +++++++ config/app.php | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app/Services/CustomFormBuilder.php b/app/Services/CustomFormBuilder.php index aaa2dd2e9..8700982fb 100644 --- a/app/Services/CustomFormBuilder.php +++ b/app/Services/CustomFormBuilder.php @@ -35,5 +35,12 @@ public function textarea($name, $value = null, $options = []) ); } + public function input($type, $name, $value = null, $options = []) + { + return new HtmlString( + $this->html->input($type, $name, $value)->attributes($options) + ); + } + // Add other methods as needed } diff --git a/config/app.php b/config/app.php index 1674e2c06..3baac8055 100644 --- a/config/app.php +++ b/config/app.php @@ -5,7 +5,7 @@ return [ - 'version' => '2.7.0', + 'version' => '2.7.1', 'appsource' => env('APP_SOURCE', 'https://appslist.heimdall.site/'),