@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 Tags
{{ $account->id }} {{ $account->identifier }} {{ $account->email }} {{ $account->creation_time}} @if ($account->activated) Activated @else Unactivated @endif @if ($account->admin) Admin @endif
{{ $accounts->links() }} @endsection