mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-24 14:08:09 +00:00
Cleanup the returned Vcard 4.0 formats Implement the recently introducted REST endpoints in the admin panels Add account actions logs to the new Controllers
22 lines
491 B
PHP
22 lines
491 B
PHP
@if (isset($errors) && $errors->any())
|
|
<div class="alert alert-danger">
|
|
<ul class="mb-0 pl-2">
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if (Session::has('error'))
|
|
<div class="alert alert-danger">
|
|
{{Session::get('error')}}
|
|
</div>
|
|
@endif
|
|
|
|
|
|
@if (Session::has('success'))
|
|
<div class="alert alert-success">
|
|
{{Session::get('success')}}
|
|
</div>
|
|
@endif
|