{!! Form::label('name', 'Name:') !!} {!! Form::text('name', null, ['class' => 'form-control','minlength' => 3]) !!}
{!! Form::label('email', 'Email:') !!} {!! Form::email('email', null, ['class' => 'form-control']) !!}
{!! Form::label('cell_phone', 'Cell Phone:') !!} {!! Form::text('cell_phone', null, ['class' => 'form-control']) !!}
{!! Form::label('ssn', 'Ssn:') !!} {!! Form::number('ssn', null, ['class' => 'form-control']) !!}
{!! Form::label('password', 'Password:') !!} {!! Form::password('password', ['class' => 'form-control','minlength' => 8]) !!}
{!! Form::label('pending', 'Pending:') !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel