15 lines
250 B
PHP
15 lines
250 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\View\Components;
|
||
|
|
||
|
use Illuminate\Contracts\View\View;
|
||
|
use Illuminate\View\Component;
|
||
|
|
||
|
class ConfirmPassword extends Component
|
||
|
{
|
||
|
public function render(): View
|
||
|
{
|
||
|
return view('components.confirm-password');
|
||
|
}
|
||
|
}
|