Blame view

resources/views/layouts/app.blade.php 4.37 KB
02a1ed535   Андрей Ларионов   Первый коммит Rek...
1
2
3
4
5
6
7
8
  <!doctype html>
  <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
  
      <!-- CSRF Token -->
      <meta name="csrf-token" content="{{ csrf_token() }}">
6a962b009   Андрей Ларионов   Система авторизац...
9
      <title>{{ $title }}</title>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
10
11
  </head>
  <body>
6a962b009   Андрей Ларионов   Система авторизац...
12
      <div>
02a1ed535   Андрей Ларионов   Первый коммит Rek...
13
14
15
16
17
          <nav class="navbar navbar-expand-md navbar-light bg-white shadow-sm">
              <div class="container">
                  <a class="navbar-brand" href="{{ url('/') }}">
                      {{ config('app.name', 'Laravel') }}
                  </a>
6a962b009   Андрей Ларионов   Система авторизац...
18
                  <!--<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="{{ __('Toggle navigation') }}">
02a1ed535   Андрей Ларионов   Первый коммит Rek...
19
                      <span class="navbar-toggler-icon"></span>
6a962b009   Андрей Ларионов   Система авторизац...
20
                  </button>-->
02a1ed535   Андрей Ларионов   Первый коммит Rek...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  
                  <div class="collapse navbar-collapse" id="navbarSupportedContent">
                      <!-- Left Side Of Navbar -->
                      <ul class="navbar-nav me-auto">
  
                      </ul>
  
                      <!-- Right Side Of Navbar -->
                      <ul class="navbar-nav ms-auto">
                          <!-- Authentication Links -->
                          @guest
                              @if (Route::has('login'))
                                  <li class="nav-item">
                                      <a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
                                  </li>
                              @endif
  
                              @if (Route::has('register'))
                                  <li class="nav-item">
                                      <a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
                                  </li>
                              @endif
                          @else
                              <li class="nav-item dropdown">
                                  <a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre>
                                      {{ Auth::user()->name }}
ad6e7ea05   Андрей Ларионов   Правки авторизаци...
47
48
49
50
51
                                  </a><br>
  
                                  @if (Auth::user()->admin)
                                      <a href="{{ route('admin.index') }}">Личный кабинет пользователя</a><br>
                                  @endif
02a1ed535   Андрей Ларионов   Первый коммит Rek...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
  
                                  <div class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
                                      <a class="dropdown-item" href="{{ route('logout') }}"
                                         onclick="event.preventDefault();
                                                       document.getElementById('logout-form').submit();">
                                          {{ __('Logout') }}
                                      </a>
  
                                      <form id="logout-form" action="{{ route('logout') }}" method="POST" class="d-none">
                                          @csrf
                                      </form>
                                  </div>
                              </li>
                          @endguest
                      </ul>
                  </div>
              </div>
          </nav>
  
          <main class="py-4">
6a962b009   Андрей Ларионов   Система авторизац...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
              @if ($message = Session::get('success'))
                  <div class="alert alert-success alert-dismissible mt-0" role="alert">
                      <button type="button" class="close" data-dismiss="alert" aria-label="Закрыть">
                          <span aria-hidden="true">&times;</span>
                      </button>
                      {{ $message }}
                  </div>
              @endif
  
              @if ($errors->any())
                  <div class="alert alert-danger alert-dismissible mt-4" role="alert">
                      <button type="button" class="close" data-dismiss="alert" aria-label="Закрыть">
                          <span aria-hidden="true">&times;</span>
                      </button>
                      <ul class="mb-0">
                          @foreach ($errors->all() as $error)
                              <li>{{ $error }}</li>
                          @endforeach
                      </ul>
                  </div>
              @endif
02a1ed535   Андрей Ларионов   Первый коммит Rek...
93
94
95
96
97
              @yield('content')
          </main>
      </div>
  </body>
  </html>