2023-03-02 07:21:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Classes\LDAP\Attribute;
|
|
|
|
|
2023-04-02 12:07:15 +00:00
|
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
|
2023-03-02 07:21:53 +00:00
|
|
|
use App\Classes\LDAP\Attribute;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents an attribute whose values are passwords
|
|
|
|
*/
|
2023-04-02 12:07:15 +00:00
|
|
|
final class Password extends Attribute
|
2023-03-02 07:21:53 +00:00
|
|
|
{
|
2023-04-02 12:07:15 +00:00
|
|
|
public function render(bool $edit=FALSE): View
|
2023-03-02 07:21:53 +00:00
|
|
|
{
|
2023-04-02 12:07:15 +00:00
|
|
|
return view('components.attribute.password')
|
|
|
|
->with('edit',$edit)
|
|
|
|
->with('o',$this);
|
2023-03-02 07:21:53 +00:00
|
|
|
}
|
|
|
|
}
|