@extends('master') @section('head') @include('script') @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) {!! HTML::breadcrumbs() !!} @endif @yield('content')
@if (!Auth::check() || !Auth::user()->registered)

 

{{ trans('texts.powered_by') }} InvoiceNinja.com - {!! link_to(RELEASES_URL, 'v' . NINJA_VERSION, ['target' => '_blank']) !!} | @if (Auth::user()->account->isWhiteLabel()) {{ trans('texts.white_labeled') }} @else {{ trans('texts.white_label_link') }} @endif
@endif

 

@stop