@extends('layout.master')
@section('title', 'Form Validation')
@section('parentPageTitle', 'Forms')
@section('content')
@stop
@section('page-script')
$(function() {
// validation needs name of the element
$('#food').multiselect();
// initialize after multiselect
$('#basic-form').parsley();
});
@stop