Create communicator

Name, DOB, National/Constituency level, region & constituency, Party ID. Sign-in is Party ID + password.

@csrf
@if (($communicators ?? collect())->isNotEmpty())
@foreach ($communicators as $c) @endforeach
NameParty IDLevelRegion / ConstituencyOccupation
{{ $c->name }} {{ $c->party_id }} {{ $c->comms_level ?: '—' }} {{ $c->region?->name ?: '—' }} / {{ $c->constituencyRef?->name ?: ($c->constituency ?: '—') }} {{ $c->occupation }}
@else
No communicators yet.
@endif

Create admin account

Email + password accounts for additional admins.

@csrf
@if (($admins ?? collect())->isNotEmpty())

Admins on file:

    @foreach ($admins as $a)
  • {{ $a->name }} - {{ $a->email }}
  • @endforeach
@endif