{{-- Basset::show('bootstrapper.css') --}} {{-- Basset::show('bootstrapper.js') --}}
@if (App::environment() != ENV_DEVELOPMENT) @endif
Invoice Ninja
@if (Auth::user()->registered) {{ Auth::user()->email }} @else {{ Button::sm_primary('Sign up', array('data-toggle'=>'modal', 'data-target'=>'#signUpModal')); }} @endif
My Account
{{ link_to('account/details', 'Details'); }}
{{ link_to('account/settings', 'Settings'); }}
{{ link_to('account/import', 'Import'); }}
{{ link_to('account/export', 'Export'); }}
Logout
Toggle navigation
{{-- HTML::nav_link('home', 'Home') --}} {{ HTML::menu_link('client') }} {{ HTML::menu_link('invoice') }} {{ HTML::menu_link('payment') }} {{ HTML::menu_link('credit') }} {{-- HTML::nav_link('reports', 'Reports') --}}
Recently Viewed
@if (count(Session::get(RECENTLY_VIEWED)) == 0)
No items
@else @foreach (Session::get(RECENTLY_VIEWED) as $link)
{{ $link->name }}
@endforeach @endif
@if (Session::has('message'))
{{ Session::get('message') }}
@endif @yield('content')
@if (!Auth::user()->registered)
×
Sign up
{{ Former::open('signup/submit')->addClass('signUpForm') }} {{ Former::populate(Auth::user()) }} {{ Former::hidden('path')->value(Request::path()) }} {{ Former::text('first_name') }} {{ Former::text('last_name') }} {{ Former::text('email') }} {{ Former::password('password') }} {{ Former::close() }}
The email address is already regiestered
Working...
@endif