Skip to content

Commit

Permalink
Merge pull request #12 from hafijul233/develop
Browse files Browse the repository at this point in the history
Issue reloved
  • Loading branch information
hafijul233 authored Nov 21, 2021
2 parents 53e3dd5 + cf707c2 commit 9ac49f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function boot()
* @parem bool $required
* @parem array $attributes
*/
Form::component('hPassword', 'form::' . $style . '.horizon.password', ['name', 'label', 'default' => null, 'required' => false, 'col_size' => 2, 'attributes' => []]);
Form::component('hPassword', 'form::' . $style . '.horizon.password', ['name', 'label', 'required' => false, 'col_size' => 2, 'attributes' => []]);

/**
* @parem string $name
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/Components/InlineFieldServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function boot()
* @parem bool $required
* @parem array $attributes
*/
Form::component('iPassword', 'form::' . $style . '.inline.password', ['name', 'label', 'default' => null, 'required' => false, 'icon' => null, 'position' => 'before', 'attributes' => []]);
Form::component('iPassword', 'form::' . $style . '.inline.password', ['name', 'label', 'required' => false, 'icon' => null, 'position' => 'before', 'attributes' => []]);

/**
* @parem string $name
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/Components/NormalFieldServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function boot()
* @parem bool $required
* @parem array $attributes
*/
Form::component('nPassword', 'form::' . $style . '.normal.password', ['name', 'label', 'default' => null, 'required' => false, 'attributes' => []]);
Form::component('nPassword', 'form::' . $style . '.normal.password', ['name', 'label', 'required' => false, 'attributes' => []]);

/**
* @parem string $name
Expand Down

0 comments on commit 9ac49f6

Please sign in to comment.