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;">
<h1 class="pull-left">
@yield('title')
@if (config('app.lock_passwords'))
<p class="help-block">{{ trans('general.some_features_disabled') }}</p>
@endif
</h1>
<div class="pull-right">
@yield('header_right')
</div>
</section>
<section class="content">
<!-- Notifications -->
<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')
</div>