for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SoareCostin\BladeFormComponents\FormComponents;
class PasswordComponent extends InputComponent
{
public function __construct(array $params = [])
parent::__construct($params);
$this->element->type = 'password';
}