{!! Form::label('friend_gender', 'Friend Gender') !!}
{!! Form::select('friend_gender', $friendGender, $record->friend_gender , ['class' => 'select2 form-control']) !!}
@if ($errors->has('friend_gender'))
{{ $errors->first('friend_gender') }}
@endif
{!! Form::label('friend_education', 'Education') !!}
{!! Form::select('friend_education', $configEdu, $record->friend_education, ['class' => 'select2 form-control']) !!}
@if ($errors->has('friend_education'))
{{ $errors->first('friend_education') }}
@endif
{!! Form::label('friend_limit', 'Per Day Request Limit') !!}
{!! Form::select('friend_limit', $limit, $record->friend_limit, ['class' => 'select2 form-control']) !!}
@if ($errors->has('friend_limit'))
{{ $errors->first('friend_limit') }}
@endif
{!! Form::label('friend_invite', 'Invite Time') !!}
{!! Form::select('friend_invite', $invite, $record->friend_invite, ['class' => 'select2 form-control']) !!}
@if ($errors->has('friend_invite'))
{{ $errors->first('friend_invite') }}
@endif
{!! Form::label('friend_age', 'Age Limit') !!}
{!! Form::select('friend_age', $age, $record->friend_age, ['class' => 'select2 form-control']) !!}
@if ($errors->has('friend_age'))
{{ $errors->first('friend_age') }}
@endif