/home/mip/mip/resources/views/website/page-support-staff.blade.php
@extends('website.layouts-inner')
@section('page-body')

<div class="inner-header">
    <img src="{{ asset('website/images/img-inner-header-company-profile.jpg') }}" class="img-responsive" />
</div>

<div class="container">
    <div class="row">
        <div class="col-sm-4">
            @include('website.includes.sidebar')
        </div>

        <div class="col-sm-8">
            <div id="support-staff">
                <h3>SUPPORT STAFF</h3>
                <div class="row">
                    <div class="col-sm-6"> <img src="{{ asset('website/images/facilities/img-processing-dept-1.jpg') }}" class="img-responsive" /></div>
                    <div class="col-sm-6"> <img src="{{ asset('website/images/facilities/img-recruitment-dept-1.jpg') }}" class="img-responsive" /></div>
                </div>
                <p>
                    <br><br>
                    MIP International Manpower Services Inc. maintains a highly efficient support staff to serve the needs of foreign employers and applicant-workers. English proficiency is a must for the support staff, and when necessary, a foreign language interpreter is available to facilitate communication. In line with this, the company has adopted a periodic training program for the staff in order to acquire and update their knowledge on recruitment strategies, as well as government issuances necessary for the efficient delivery of services.
                </p>
            </div>
        </div>
    </div>
</div>

@section('facilitiesstyle')
<link href="https://cdnjs.cloudflare.com/ajax/libs/imageviewer/1.0.0/viewer.min.css" rel="stylesheet">
@stop

@section('facilitiesscript')
<script src="https://cdnjs.cloudflare.com/ajax/libs/imageviewer/1.0.0/viewer.min.js"></script>
<script>
    var $image = $('.img-wrapper');
    $image.viewer({
        inline: false,
        toolbar: false,
        navbar: false,
        movable: false,
        zoomable: true,
        scalable: false,
        rotatable: false,
        title: false,
        viewed: function() {
            $image.viewer('zoomTo', 0.15);
        }
    });
    // Get the Viewer.js instance after initialized
    var viewer = $image.data('viewer');
    // View a list of images
    $('.img-wrapper').viewer();

</script>
@stop


@stop