@extends('layouts.app') @section('breadcrumb') @stop @section('content')

{!! trans('messages.add_new') !!} {!! trans('messages.meeting_minute') !!}

{!! Form::open(['route' => 'meeting-minute.store','role' => 'form', 'class'=>'meeting-minute-form','id' => 'meeting-minute-form','data-file-upload' => '.file-uploader']) !!} @include('meeting_minute._form') {!! Form::close() !!}

{!! trans('messages.filter') !!} {!! trans('messages.report') !!}

{!! Form::open(['url' => 'filter', 'id' => 'meeting-minute-filter-form', 'data-no-form-clear' => 1]) !!}
{!! Form::label('location',trans('messages.location'),[]) !!} {!! Form::select('location[]',$locations,'',['class'=>'form-control show-tick', 'title'=>trans('messages.select_one'), 'multiple'=>'multiple', 'data-actions-box'=>'true']) !!}
{!! Form::close() !!}

{!! trans('messages.list_all') !!} {!! trans('messages.meeting_minute') !!}

@if(Laratrust::isAbleTo('create-meeting-minute')) @endif
@include('global.datatable',['table' => $table_data['meeting-minute-table']])
@stop