Added an address merge UI page

This commit is contained in:
2023-09-09 00:07:46 +10:00
parent 234be677f9
commit ed7dc2ab8b
5 changed files with 211 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<span class="col-6 mt-auto mx-auto text-center align-bottom">
@if($errors->count())
<span class="btn btn-sm btn-danger" role="alert">
There were errors with the submission.
<ul>
@foreach($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</span>
@endif
</span>