@extends("base") @section("main")
@include("partials.sidebar")
@if(! empty($email) && $account && ! @$account->revoked_at && ! @$account->payed_at) Pay @endif
@if (! is_null($errmsg))
{{ $errmsg }}
@elseif (! is_null($account)) @if ($account->revoked_at)
Access revoked at: {{ $account->revoked_at }}
@elseif ($account->payed_at)
Worker payed at: {{ $account->payed_at }}
@else
Access granted. PAY_WORKER ;)
@endif @endif
@endsection