@extends('layouts.app') @section('title') Admin Panel @endsection @section('content')
@if (!Auth::user()->is_Admin)

You are not allowed to see this page.

Go somewhere nice @else
Admin Panel
@if (session('status')) @endif
@yield('admin_content')
@endif
@endsection