@extends('master') @section('head') @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 ($_SERVER['SERVER_NAME'] != 'www.invoiceninja.com')
{{ trans('texts.powered_by') }} InvoiceNinja.com
@endif

 

@stop