@extends('layouts.account') @section('breadcrumb') @endsection @section('content')

Accounts

{!! Form::open(['route' => 'admin.account.search']) !!}
{!! Form::text('search', $search, ['class' => 'form-control', 'placeholder' => 'Search by username: +1234, foo_bar…']) !!}
{!! Form::close() !!}
@foreach ($accounts as $account) @endforeach
# Identifier (email) Created
{{ $account->id }}
@if ($account->activated) Activated @else Unactivated @endif @if ($account->admin)
Admin @endif
{{ $account->identifier }} @if ($account->email) ({{ $account->email }}) @endif {{ $account->creation_time}}
{{ $accounts->links('pagination::bootstrap-4') }} @endsection