{!! Form::label('name', 'Name:') !!}

{{ $frontUser->name }}

{!! Form::label('email', 'Email:') !!}

{{ $frontUser->email }}

{!! Form::label('cell_phone', 'Cell Phone:') !!}

{{ $frontUser->cell_phone }}

{!! Form::label('ssn', 'Ssn:') !!}

{{ $frontUser->ssn }}

{!! Form::label('last_login', 'Last Login:') !!}

{{ $frontUser->last_login }}

{!! Form::label('code', 'Code:') !!}

{{ $frontUser->code }}

{!! Form::label('pending', 'Pending:') !!}

{{ $frontUser->pending == 1 ? 'Yes' : 'No' }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $frontUser->created_at }}