Blame view

resources/views/errors/403.blade.php 262 Bytes
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  @extends('layouts.admin')
  
  @section('title', 'Forbidden Access')
  
  @section('content')
  <!-- Default box -->
  <div class="box box-success">
      <div class="box-body">
          <h1>You don't have permission.</h1>
      </div>
      <!-- /.box-body -->
  </div>
  @endsection