@extends('master') @section('head') @stop @section('body') @if ( ! Request::is('settings/account_management')) @include('partials.upgrade_modal') @endif
@include('partials.warn_session', ['redirectTo' => '/dashboard']) @if (Session::has('warning'))
{!! Session::get('warning') !!}
@endif @if (Session::has('message'))
{{ Session::get('message') }}
@elseif (Session::has('news_feed_message'))
{!! Session::get('news_feed_message') !!} {{ trans('texts.hide') }}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (!isset($showBreadcrumbs) || $showBreadcrumbs) {!! Form::breadcrumbs((isset($entity) && $entity->exists) ? $entity->present()->statusLabel : false) !!} @endif @yield('content')
@if (Utils::isNinjaProd()) @if (Auth::check() && Auth::user()->isTrial()) {!! trans(Auth::user()->account->getCountTrialDaysLeft() == 0 ? 'texts.trial_footer_last_day' : 'texts.trial_footer', [ 'count' => Auth::user()->account->getCountTrialDaysLeft(), 'link' => '' . trans('texts.click_here') . '' ]) !!} @endif @else @include('partials.white_label') @endif
@if (!Auth::check() || !Auth::user()->registered)

 

@stop