New task - password confirmation

This commit is contained in:
PovilasKorop
2021-11-01 08:36:28 +02:00
parent 355d40f627
commit 0240281ef9
4 changed files with 48 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Very secret page') }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
This page should be visible only for those who entered their password again.
</div>
</div>
</div>
</div>
</x-app-layout>