@extends('frame') @section('title') blikk :: {{ trans('auth.delete.title') }} @stop @section('css') @stop @section('js') @stop @section('content')

{{ trans('auth.delete.title') }}

@if ( ! session()->has('success')) @if ( ! $isadmin)

{!! trans('auth.delete.disclaimer',['username' => Auth::user()->Name] ) !!}

@csrf @if (session()->has('error'))
{{ session('error') }}
@endif @if (session()->has('ays'))
@endif
@endif @if ($isadmin)

{!! trans('auth.delete.disclaimer_admin') !!}

@csrf @if ($errors->any() && array_key_exists('usernameorid',$errors->getMessages()))
{{ trans('auth.delete.error_usernameorid') }}
@endif @if (session()->has('error'))
{{ session('error') }}
@endif @if (session()->has('ays'))

{{ session('email') }}

@endif
@endif @else

{!! session('success') !!}

@endif
@stop