21 lines
945 B
PHP
21 lines
945 B
PHP
<section
|
|
class="wow fadeIn bg-light-gray padding-35px-tb page-title-small {{ Request::is('login') || Request::is('register') || Request::is('private-message') ? 'top-space' : '' }}">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-8 col-md-6 breadcrumb text-center text-md-left">
|
|
<ul>
|
|
<li><a href="{{ url('') }}" class="text-dark-gray">{{ trans('global.menu_home') }}</a></li>
|
|
<li class="text-dark-gray">
|
|
{{ $title }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-lg-4 col-md-6 justify-content-center justify-content-md-end sm-margin-10px-top">
|
|
<h1 class="text-extra-dark-gray font-weight-600 mb-0 text-uppercase text-md-right">
|
|
{{ $title }}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|