feat: add 2fa & pw component classes

This commit is contained in:
Miguel Nogueira 2022-09-04 17:55:01 +01:00
parent 8f3b790b53
commit afa5970080
No known key found for this signature in database
GPG Key ID: 3C6A7E29AF26D370
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?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');
}
}

View File

@ -0,0 +1,14 @@
<?php
namespace App\View\Components;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class ConfirmSecondFactor extends Component
{
public function render(): View
{
return view('components.confirm-second-factor');
}
}