Skip to content

Commit

Permalink
error pages updated
Browse files Browse the repository at this point in the history
  • Loading branch information
luisnmartins committed Apr 25, 2018
1 parent c62cab9 commit adf7701
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
12 changes: 12 additions & 0 deletions resources/views/errors/403.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@extends('layouts.app')

@section('title','Access Forbidden')

@section('content')

<main>
<div class="container">
<h1>ACCESS FORBIDDEN</h1>
</div>
</main>
@endsection
13 changes: 11 additions & 2 deletions resources/views/errors/404.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<?php
@extends('layouts.app')

?>
@section('title','Not Found')

@section('content')

<main>
<div class="container">
<h1>NOT FOUND</h1>
</div>
</main>
@endsection

0 comments on commit adf7701

Please sign in to comment.