2016-12-14 07:56:01 -08:00
|
|
|
@extends('layouts/basic')
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2022-05-17 19:01:37 -07:00
|
|
|
{{ trans('general.maintenance_mode_title') }}
|
2016-12-14 07:56:01 -08:00
|
|
|
@parent
|
|
|
|
@stop
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
{{-- Page content --}}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
@section('content')
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
2017-10-28 07:01:45 -07:00
|
|
|
|
2022-05-17 19:01:37 -07:00
|
|
|
<div class="container">
|
2016-12-14 07:56:01 -08:00
|
|
|
<div class="row">
|
2017-10-28 07:01:45 -07:00
|
|
|
<div class="col-md-9 col-md-offset-1">
|
|
|
|
|
2022-05-17 19:01:37 -07:00
|
|
|
<div class="box box-warning">
|
2017-10-28 07:01:45 -07:00
|
|
|
|
2022-05-17 19:01:37 -07:00
|
|
|
<div class="box-header with-border">
|
|
|
|
<h1 class="box-title">
|
|
|
|
<i class="fas fa-exclamation-triangle text-orange" aria-hidden="true"></i>
|
|
|
|
{{ trans('general.maintenance_mode_title') }}
|
|
|
|
</h1>
|
|
|
|
</div><!-- /.box-header -->
|
2017-10-28 07:01:45 -07:00
|
|
|
|
2022-05-17 19:01:37 -07:00
|
|
|
<div class="box-body">
|
|
|
|
<div class="col-md-12">
|
2017-10-28 07:01:45 -07:00
|
|
|
|
2022-05-17 19:01:37 -07:00
|
|
|
<div class="col-md-2">
|
|
|
|
<img src="{{ url('/') }}/img/sad-panda.png" class="pull-right" style="width: 140px; height: 140px;">
|
|
|
|
</div>
|
|
|
|
<div class="alert alert-warning fade in">
|
|
|
|
<h2> {{ trans('general.maintenance_mode') }}</h2>
|
|
|
|
</div>
|
2017-10-28 07:01:45 -07:00
|
|
|
|
2022-05-17 19:01:37 -07:00
|
|
|
</div> <!-- /.div -->
|
|
|
|
</div><!-- /.box-body -->
|
2016-12-14 07:56:01 -08:00
|
|
|
|
|
|
|
</div>
|
2022-05-17 19:01:37 -07:00
|
|
|
|
2016-12-14 07:56:01 -08:00
|
|
|
</div>
|
|
|
|
@stop
|