diff --git a/app/View/Components/Form/Section.php b/app/View/Components/Form/Section.php
index a496f37e3..bcff129fe 100644
--- a/app/View/Components/Form/Section.php
+++ b/app/View/Components/Form/Section.php
@@ -19,11 +19,11 @@ class Section extends Component
* @return void
*/
public function __construct(
- string $spacingVertical = 'gap-x-8', string $spacingHorizontal = 'gap-y-6', string $columnNumber = 'sm:grid-cols-6',
+ string $spacingVertical = 'gap-y-6', string $spacingHorizontal = 'gap-x-8', string $columnNumber = 'sm:grid-cols-6',
) {
$this->spacingVertical = $spacingVertical;
$this->spacingHorizontal = $spacingHorizontal;
- $columnNumber = $columnNumber;
+ $this->columnNumber = $columnNumber;
}
/**
diff --git a/resources/views/banking/reconciliations/create.blade.php b/resources/views/banking/reconciliations/create.blade.php
index ea9f09cc8..2d6f0515b 100644
--- a/resources/views/banking/reconciliations/create.blade.php
+++ b/resources/views/banking/reconciliations/create.blade.php
@@ -12,8 +12,8 @@