View file resources/views/pages/ipban.blade.php

File size: 650B
@extends('layout_simple')

@section('title')
    {{ __('pages.banned') }}
@stop

@section('content')

    <h1>{{ __('pages.banned') }}</h1>

    {!! __('pages.banned_text') !!}<br>

    @if (! $ban->user_id)
        @if ($ban->created_at < strtotime('-1 minute', SITETIME))
            <form method="post">
                {!! view('app/_captcha') !!}
                <button class="btn btn-primary">{{ __('main.confirm') }}</button>
            </form>
        @else
            {!! __('pages.banned_wait') !!}
            <br>
            <button class="btn btn-secondary" disabled>{{ __('main.confirm') }}</button>
        @endif
    @endif
@stop