@extends('master') @section('head') @include('script') @stop @section('body')
@if (!isset($showBreadcrumbs) || $showBreadcrumbs) {{ HTML::breadcrumbs() }} @endif @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 @yield('content')
@if (!Auth::check() || !Auth::user()->registered) @endif @if (Auth::check() && !Auth::user()->isPro()) @endif {{-- Per our license, please do not remove or modify this link. --}} @if (!Utils::isNinja())
{{ trans('texts.powered_by') }} InvoiceNinja.com | @if (Auth::user()->account->isWhiteLabel()) {{ trans('texts.white_labeled') }} @else {{ trans('texts.white_label_link') }} @endif
@endif

 

@stop