{!! Form::label('first_name', 'First Name:') !!} {!! Form::text('first_name', null,['class'=>'form-control', 'placeholder'=>'Enter first name ...']) !!}
{!! Form::label('last_name', 'Last Name:') !!} {!! Form::text('last_name', null,['class'=>'form-control', 'placeholder'=>'Enter last name ...']) !!}
{!! Form::label('email', 'Email:') !!} {!! Form::text('email', null,['class'=>'form-control', 'placeholder'=>'Enter email ...']) !!}
{!! Form::label('password', 'Password:') !!} {!! Form::password('password',['class'=>'form-control', 'placeholder'=>'Enter password ...']) !!}
{!! Form::label('password_confirmation', 'Re-type Password:') !!} {!! Form::password('password_confirmation',['class'=>'form-control', 'placeholder'=>'Enter password ...']) !!}
{!! Form::label('group_id', 'Group:') !!} {!! Form::select('group_id', $data['groups'], null,['class'=>'form-control', 'placeholder'=>'Select group ...']) !!}
{!! Form::label('confirmed', 'Confirmed:') !!}
{!! Form::label('active', 'Status:') !!}
{!! Form::label('email_verified_at', 'Verified:') !!}
{!! Form::label('send_welcome_email', 'Send Welcome Email:') !!}
{!! Form::label('send_confirmation_email', 'Send Confirmation Email:') !!}