@extends('layouts.default') @section('content') @include('layouts.partials.messages')

New Client

{{ Form::open() }}
{{ Form::label('name', 'Name:') }} {{ Form::text('name', null, ['class' => 'form-control']) }}
{{ Form::label('email', 'Email:') }} {{ Form::email('email', null, ['class' => 'form-control']) }}
{{ Form::label('password', 'Password:') }} {{ Form::password('password', ['class' => 'form-control']) }}
{{ Form::label('password', 'Confirm Password:') }} {{ Form::password('password_confirmation', ['class' => 'form-control']) }}
{{ Form::label('phone', 'Phone Number:') }} {{ Form::text('phone', null, ['class' => 'form-control']) }}
{{ Form::close() }}

Clients

@foreach($clients as $client) @endforeach
ID Name Email Phone Status Registration Time
{{$client->id}} {{$client->name}} {{$client->email}} {{$client->phone}} {{$client->present()->userStatus}} {{$client->present()->registerTime}}
@stop @section('scripts') @stop