Nicer demo mode message

This commit is contained in:
snipe 2016-07-22 00:28:22 -07:00
parent ca5d3e3006
commit 3a04686ade

View file

@ -495,20 +495,29 @@
<section class="content-header" style="padding-bottom: 30px;"> <section class="content-header" style="padding-bottom: 30px;">
<h1 class="pull-left"> <h1 class="pull-left">
@yield('title') @yield('title')
@if (config('app.lock_passwords'))
<p class="help-block">{{ trans('general.some_features_disabled') }}</p>
@endif
</h1> </h1>
<div class="pull-right"> <div class="pull-right">
@yield('header_right') @yield('header_right')
</div> </div>
</section> </section>
<section class="content"> <section class="content">
<!-- Notifications --> <!-- Notifications -->
<div class="row"> <div class="row">
@if (config('app.lock_passwords'))
<div class="col-md-12">
<div class="callout callout-info">
{{ trans('general.some_features_disabled') }}
</div>
</div>
@endif
@include('notifications') @include('notifications')
</div> </div>