@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') }}
@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 @if (!Utils::isNinjaProd() && !Utils::isNinjaDev())
{{ trans('texts.powered_by') }} InvoiceNinja.com
@endif

 

@stop