pipicar/resources/views/errors/403.blade.php

45 lines
1.6 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@extends('layouts.app')
@section('content')
<style>
#spin_circle {
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
font-weight: 400;
font-style: normal;
font-variant: normal;
line-height: 1;
display: inline-block;
text-transform: none;
speak: none;
-webkit-font-smoothing: antialiased;
}
</style>
<div class="account-pages my-5 pt-5">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-center mb-5">
<h1 class="display-2 fw-medium">
4<i id="spin_circle" class=" bi bi-gear-fill text-primary display-3" style=""></i>3
</h1>
<h4 class="text-uppercase">{{ __('У вас нет доступа') }}</h4>
<div class="mt-5 text-center">
<a class="btn btn-primary waves-effect waves-light" href="{{ lurl('/') }}">{{ __('На главную') }}</a>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-8 col-xl-6">
<div>
<img src="{{ asset('img/error.png') }}" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
@endsection