diff --git a/app/Services/CustomFormBuilder.php b/app/Services/CustomFormBuilder.php index aaa2dd2e..8700982f 100644 --- a/app/Services/CustomFormBuilder.php +++ b/app/Services/CustomFormBuilder.php @@ -35,5 +35,12 @@ class CustomFormBuilder ); } + 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 1674e2c0..3baac805 100644 --- a/config/app.php +++ b/config/app.php @@ -5,7 +5,7 @@ use Illuminate\Support\Facades\Facade; return [ - 'version' => '2.7.0', + 'version' => '2.7.1', 'appsource' => env('APP_SOURCE', 'https://appslist.heimdall.site/'),