{!! Form::label('first_name','First Name') !!} {!! Form::text('first_name' , $contact->first_name , ['class' => 'form-control','placeholder' => 'First Name','required'=>'true']) !!}
{!! Form::label('last_name','Last Name') !!} {!! Form::text('last_name' , $contact->last_name , ['class' => 'form-control','placeholder' => 'Last Name','required'=>'true']) !!}
{!! Form::label('email','Email') !!} {!! Form::email('email' , $contact->email , ['class' => 'form-control','placeholder' => 'Email','required'=>'true']) !!}
{!! Form::label('phone','Phone') !!} {!! Form::text('phone' , $contact->phone , ['class' => 'form-control','placeholder' => 'Phone']) !!}
{!! Form::label('birth_date','Birthdate:') !!}
{!! Form::label('list','List') !!} {!! Form::select('list[]' , $lists , (isset($selected)) ? $selected : $list_id , ['class' => 'form-control chosen-select','multiple','data-placeholder' => 'Choose lists']) !!}
@if($contact->id > 0) @endif