@extends('master') @section('head') @stop @section('body')
@include('partials.warn_session', ['redirectTo' => '/dashboard']) @if (Session::has('warning'))
{!! Session::get('warning') !!}
@endif @if (Session::has('message'))
{{ Session::get('message') }}
@elseif (Session::has('news_feed_message'))
{!! Session::get('news_feed_message') !!} {{ trans('texts.hide') }}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (!isset($showBreadcrumbs) || $showBreadcrumbs) {!! Form::breadcrumbs(isset($entityStatus) ? $entityStatus : '') !!} @endif @yield('content')
@if (!Auth::check() || !Auth::user()->registered)
@if (Utils::isNinjaProd()) @if (Auth::check() && Auth::user()->isTrial()) {!! trans(Auth::user()->account->getCountTrialDaysLeft() == 0 ? 'texts.trial_footer_last_day' : 'texts.trial_footer', [ 'count' => Auth::user()->account->getCountTrialDaysLeft(), 'link' => '' . trans('texts.click_here') . '' ]) !!} @endif @else {{ trans('texts.powered_by') }} {{-- Per our license, please do not remove or modify this section. --}} {!! link_to('https://www.invoiceninja.com/?utm_source=powered_by', 'InvoiceNinja.com', ['target' => '_blank', 'title' => 'invoiceninja.com']) !!} - {!! link_to(RELEASES_URL, 'v' . NINJA_VERSION, ['target' => '_blank', 'title' => trans('texts.trello_roadmap')]) !!} | @if (Auth::user()->account->isWhiteLabel()) {{ trans('texts.white_labeled') }} @else {{ trans('texts.white_label_link') }} @endif
@endif

 

@stop