@extends('layouts.app') @section('title') Banned @endsection @section('content')
@if (Auth::user()->banned)

Banned


You've been banned from {{ config('app.name') }}.

Reason: {{ Auth::user()->ban_reason }}

Banned until {{ date('m/d/Y', strtotime(Auth::user()->banned_until)) }}.

@if (Auth::user()->banned_until->isPast())
@csrf
@endif @else

Hey!

You're not banned, and you shouldn't be here!

@endif
@endsection