Stubs for docuninja signing

This commit is contained in:
David Bomba
2025-06-16 13:30:11 +10:00
parent 0f16f8e98c
commit f98dd181ba
2 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<div class="rounded-lg border bg-card text-card-foreground shadow-sm overflow-hidden px-4 py-5 bg-white sm:gap-4 sm:px-6">
<div class="p-2">
@if($errors->any())
<div class="alert alert-error">
<ul>
@foreach($errors->all() as $error)
<li class="text-sm">{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
@php
session()->forget('errors');
@endphp
</div>
</div>