mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
* Migration: Option to select the migration type * Migration: Logic for redirecting based on steps * Work for migrations: - Added authentication view, service - Account connecting - Scaffold services - Companies service - (wip) Sending data to v2 * Migration: Sending migration file * Wrap up the migration first stage * Split company per request / no bundle Co-authored-by: David Bomba <turbo124@gmail.com>
9 lines
200 B
PHP
9 lines
200 B
PHP
@if(session('responseErrors'))
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach(session('responseErrors') as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif |