@extends('adminlte::page') @section('htmlheader_title') Authorise an Email address @endsection @section('main-content')

Authorise Email address

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if ($doorman->count())
    @foreach ($doorman->all() as $invite)
  • Invite Code: {{ $invite->code }} for: {{ $invite->for }} valid {{ $invite->max }} times until {{ $invite->valid_until }}.
  • @endforeach
@endif
@endsection