mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
15 lines
423 B
PHP
15 lines
423 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">
|
||
|
<h4>{!! trans('texts.migration_import') !!}</h4>
|
||
|
</div>
|
||
|
</div>
|
||
|
@stop
|