diff --git a/app/View/Components/Private/Forms/Input.php b/app/View/Components/Private/Forms/Input.php index 2e3c0af..a1a0ee7 100644 --- a/app/View/Components/Private/Forms/Input.php +++ b/app/View/Components/Private/Forms/Input.php @@ -19,17 +19,17 @@ final class Input extends Form return $this->name; } - protected function getTitle(): string + private function getTitle(): string { return Str::ucfirst($this->title); } - protected function getType(): string + private function getType(): string { return $this->type; } - protected function getValue(): string + private function getValue(): string { return (string) old($this->getRequestName(), $this->value); }