How can I make input modal box or another way by Laravel Blade?
My goal is that if I click to insert new list item in the list, then modal input box show.
<div class="form-group col-sm-4 col-lg-4">
   {!! Form::label('job_type', 'Type:') !!} 
   {!! Form::select('job_type', [
            '1' => '1',
            '2' => '2',
            '3' => '3',
            '4' => '4',
            '5' => '5',
            '6' => 'Add more item'            
     ], null, ['class' => 'form-control']) !!}
    </div>

 
    