{!! Form::label('first_name', trans('First Name *')) !!} {!! Form::text('first_name', old('first_name',$userlist->first_name), ['class' => 'form-control', 'placeholder' => trans('First Name *')]) !!} {!! $errors->first('first_name', ':message') !!}
{!! Form::label('last_name', trans('Last Name *')) !!} {!! Form::text('last_name', old('last_name',$userlist->last_name), ['class' => 'form-control', 'placeholder' => trans('Last Name *')]) !!} {!! $errors->first('last_name', ':message') !!}
{!! Form::label('phone', trans('Phone Number *')) !!} {!! Form::number('phone', old('phone',$userlist->phone), ['class' => 'form-control', 'placeholder' => trans('Phone Number *')]) !!} {!! $errors->first('phone', ':message') !!}
{!! Form::label('email', trans('Mail ID *')) !!} {!! Form::text('email', old('email',$userlist->email), ['class' => 'form-control', 'placeholder' => trans('Email ID *')]) !!} {!! $errors->first('email', ':message') !!}
{!! Form::label('status', trans('Status')) !!}
{!! Form::label('status', trans('Enable')) !!} {!! Form::radio('status', 1, $userlist->status) !!} {!! $errors->first('status', ':message') !!}    {!! Form::label('status', trans('disable')) !!} {!! Form::radio('status', 0, !$userlist->status) !!} {!! $errors->first('status', ':message') !!}