/home/mip/mip/resources/views/website/page-mission.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="mission">
                <h3>MISSION</h3>
                <p>MIP International Manpower Services Inc. is committed to the principle of partnership for human and economic development.</p>
                <p>To achieve this end, MIP International Manpower Services Inc. has:</p>
                <ul class="inner-page-lists">
                    <li>Dedicated to enlist an overseas employment workforce that amply addresses the specifications of our foreign principals;</li>
                    <li>Devoted its resources to provide foreign employers with full information on the skills, qualification and training of Filipino overseas workers and,</li>
                    <li>Striven to maintain a responsible partnership with the government to preserve the integrity of the recruitment process.</li>
                </ul>
            </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