{!! Form::open(['route' => ['user_services', $id],'id'=>'formajax2']) !!}

Add More

{!! Form::label('inquiry_country', 'Inquiry Country:') !!} {!! Form::select('inquiry_country', $countries, IConstants::COUNTRY, ['class' => 'form-control form-select select2','id'=>'inquiry_country']) !!}
{!! Form::label('service_id', 'Service:') !!}
{!! Form::label('notes', 'Notes:') !!} {!! Form::text('notes', null, ['class' => 'form-control ']) !!}

{!! Form::submit('Save', ['class' => 'btn btn-primary mb-4','style'=>'float:right;']) !!} {!! Form::close() !!} @foreach($user_services as $service) @endforeach
Country Services Note Action
{{$service->inquiry_country}} {!! Common::userServices($service->service_id) !!} {{$service->notes}} {!! Form::open(['route' => ['user_services',[$id,'del'=>$service->id]], 'method' => 'delete','class'=> 'formajax2']) !!} {!! Form::button('', [ 'type' => 'submit', 'class' => 'btn text-danger', 'onclick' => 'return confirm("Are you sure, want to delete this service?")' ]) !!} {!! Form::close() !!}