mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
13 lines
347 B
PHP
13 lines
347 B
PHP
|
@extends('header')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<ul class="nav nav-tabs nav nav-justified">
|
||
|
{{ HTML::nav_link('account/details', 'Details') }}
|
||
|
{{ HTML::nav_link('account/settings', 'Settings') }}
|
||
|
{{ HTML::nav_link('account/import', 'Import', 'account/import_map') }}
|
||
|
{{ HTML::nav_link('account/export', 'Export') }}
|
||
|
</ul>
|
||
|
<p> </p>
|
||
|
|
||
|
@stop
|