2018-12-11 16:42:36 +03:00
|
|
|
<html lang="{{ app()->getLocale() }}">
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2017-09-14 22:21:00 +03:00
|
|
|
@include('partials.auth.head')
|
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
<body class="login-page">
|
2018-08-04 18:05:37 +03:00
|
|
|
@stack('body_start')
|
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
<div class="main-content">
|
|
|
|
<div class="header py-5">
|
|
|
|
<div class="container">
|
|
|
|
<div class="header-body text-center mb-5">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-xl-5 col-lg-6 col-md-8">
|
|
|
|
<img class="pb-5" src="{{ asset('public/img/akaunting-logo-white.png') }}" width="22%" alt="Akaunting"/>
|
2019-11-16 10:21:14 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-26 09:43:39 +03:00
|
|
|
</div>
|
2018-08-04 18:05:37 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
@stack('login_box_start')
|
|
|
|
<div class="container mt--7 pb-5">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-lg-5 col-md-7">
|
|
|
|
<div class="card mb-0 login-card-bg">
|
|
|
|
<div class="card-body px-lg-5 py-lg-5">
|
|
|
|
<div class="text-center text-white mb-4">
|
|
|
|
<small>@yield('message')</small>
|
|
|
|
</div>
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
<div id="app">
|
|
|
|
@stack('login_content_start')
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
@yield('content')
|
2017-09-14 22:21:00 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
@stack('login_content_end')
|
|
|
|
<notifications></notifications>
|
2019-11-16 10:21:14 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-26 09:43:39 +03:00
|
|
|
</div>
|
|
|
|
@stack('login_box_end')
|
2018-08-04 18:05:37 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
@yield('forgotten-password')
|
2018-08-04 18:05:37 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
<footer>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row align-items-center justify-content-xl-between">
|
|
|
|
<div class="col-xl-12">
|
|
|
|
<div class="copyright text-center text-lg-center text-white">
|
|
|
|
<small>
|
|
|
|
<a>{{ trans('footer.powered') }}:</a> <a class="text-success" href="{{ trans('footer.link') }}" target="_blank">{{ trans('footer.software') }}</a>
|
|
|
|
</small>
|
2019-11-16 10:21:14 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-26 09:43:39 +03:00
|
|
|
</div>
|
|
|
|
</footer>
|
2017-09-26 01:22:02 +03:00
|
|
|
|
2019-12-26 09:43:39 +03:00
|
|
|
</div>
|
2018-08-04 18:05:37 +03:00
|
|
|
|
|
|
|
@stack('body_end')
|
2019-11-16 10:21:14 +03:00
|
|
|
|
|
|
|
@include('partials.auth.scripts')
|
2017-09-14 22:21:00 +03:00
|
|
|
</body>
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2017-09-14 22:21:00 +03:00
|
|
|
</html>
|