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

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->identifier }} @if ($account->email) Email @endif @if ($account->activated) Activated @endif @if ($account->admin) Admin @endif @if ($account->sha256Password) SHA256 @endif {{ $account->creation_time}}
{{ $accounts->links('pagination::bootstrap-4') }} @endsection