mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
25dca51b5e
- Update completed.blade.php with errors message - Better status checking in CompleteService.php
16 lines
479 B
PHP
16 lines
479 B
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.welcome_to_the_new_version') !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
{{ $customMessage ?? 'Migration has started. We\'ll update you with status, on your company e-mail.' }}
|
|
</div>
|
|
</div>
|
|
|
|
@stop |