User Records
{!! Form::text('username', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('username', '

:message

') !!}
{!! Form::text('mobile_no', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('mobile_no', '

:message

') !!}
{!! Form::text('model_name', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('model_name', '

:message

') !!}
{!! Form::text('imei', null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('imei', '

:message

') !!}
{!! Form::select('status', ['Inactive', 'Active'], null, ['class' => 'm-wrap span12']) !!} {!! $errors->first('status', '

:message

') !!}
{!! Form::submit(isset($submitButtonText) ? $submitButtonText : 'Create', ['class' => 'btn green']) !!}