@extends('layouts.default') @section('title', 'Schedule meeting') @section('header-links') @include('includes.headers.meetings') @endsection @section('new_button') list My Meetings List @endsection @section('content')
{{ Form::open(['route'=>'meetings.store', 'method'=>'POST', 'role'=>'form', 'id'=>'createForm']) }} Meeting Info
{{ Form::textGroup('subject', 'Meeting Topic', null, ['id'=>'subject', 'required'=>'required']) }}
{{ Form::selectGroup('venue', 'Select Venue', $venues, 1, ['class'=>'selectpicker']) }}
{{ Form::textGroup('number', 'Meeting No.', 'MOM-0'.($number), ['id'=>'number', 'required'=>'required', 'readonly'] ) }}
{{ Form::textGroup('organised_by', 'Organised By', ucwords(auth()->user()->name), ['id'=>'organise', 'readonly']) }}
{{ Form::textGroup('date', 'Date', '',['id' => 'todaydate', 'class' => 'form-control', 'data-inputmask' => '\'alias\': \'yyyy-mm-dd\'', 'required'=>'required', 'placeholder'=>'yyyy-mm-dd'],'') }}
Time {{ redStar() }} (Hours & Minutes)
@php $hours = 12; @endphp
@php $mins = 59; @endphp
{{ Form::radio('time3', 1) }} AM {{ Form::radio('time3', 2, true) }} PM
Select Duration (Min) {{ Form::selectRange('duration', 1, 200, 30, ['class'=>'selectpicker', 'title'=>'Select Venue']) }}

Recurring

Mon Tue Wed Thu Fri Sat Sun
{{ Form::textGroup('rdate', 'Recurring End Date', 'calendar',['id' => 'rdate', 'class' => 'form-control', 'data-inputmask' => '\'alias\': \'yyyy-mm-dd\'', 'placeholder'=>'yyyy-mm-dd'],'', 'col-md-12') }}
Select Participants {{ Form::select('participants[]', $participants, null, ['class'=>'selectpicker', 'multiple', 'title'=>'Select Participants', 'id'=>'partsSelect', 'data-live-search'=>'true']) }}
Participants:
No one selected

Meeting Agenda

{!! Form::textarea('agenda', '', ['class' => 'form-ControlTextArea', 'id'=>'agenda']) !!}

Discussion Points

{!! Form::textarea('dpoints', '', ['class' => 'form-ControlTextArea', 'id'=>'dpoints']) !!}

Issues Statements

{{ Form::selectGroup('rparticipants[]', 'Participant', $participants, null, ['class'=>'selectpicker rpselect', 'id'=>'select1', 'onchange'=>'changeRadio(1)', 'data-live-search'=>'true']) }}

Yes

No

{{ Form::button('Add Row', ['class'=>'btn btn-primary pull-right', 'onclick'=>'addRow()']) }}
Cancel
{{ csrf_field() }}
@include('includes.datepicker') {{ Form::hidden('fcontrol', '', ['id'=>'fcontrol']) }} @stop