Skip to content

Commit

Permalink
textbox components bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Cipfahim committed Jun 8, 2020
1 parent 3e33e91 commit 649173b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Illuminate\View\Component;

class TextBox extends Component
class Textbox extends Component
{
/**
* The field type.
Expand Down Expand Up @@ -83,6 +83,6 @@ public function __construct($type = 'text', $label, $name, $placeholder = null,
*/
public function render()
{
return view('components.forms.text-box');
return view('components.forms.textbox');
}
}

0 comments on commit 649173b

Please sign in to comment.