mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 18:13:55 +02:00
18 lines
583 B
PHP
18 lines
583 B
PHP
@extends('layout')
|
|
|
|
@section('content')
|
|
<div>
|
|
<div class="relative bg-white border border-primary rounded-lg overflow-hidden">
|
|
<div class="bg-gradient-to-r from-primary-light to-primary px-2 py-4 text-center">
|
|
<h1 class="relative font-title font-medium font-body text-4xl text-center text-white uppercase flex items-center">
|
|
|
|
<div class="grow text-center">{{ config('app.name') }}</div>
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="my-10 text-center text-base font-title uppercase text-primary">
|
|
@lang('app.cannot-upload-blocked-ip')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|