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

Task Manager

{!! Form::open(['method' => 'POST', 'route' => ['admin.taskmanager.store']]) !!}
@lang('quickadmin.qa_create')
{!! Form::label('company_id', 'Company', ['class' => 'control-label']) !!}
{!! Form::label('item', 'Item', ['class' => 'control-label']) !!}
{!! Form::label('segment_id', 'Segment', ['class' => 'control-label']) !!}
{!! Form::label('owner_id', 'Owner', ['class' => 'control-label']) !!}
{!! Form::label('employee_id', 'Employee*', ['class' => 'control-label']) !!}

@if($errors->has('employee_id'))

{{ $errors->first('employee_id') }}

@endif
{!! Form::label('type_of_meeting', 'Type of Meeting', ['class' => 'control-label']) !!}
{!! Form::label('meeting_date', 'Meeting Date*', ['class' => 'control-label']) !!} {!! Form::text('meeting_date', old('meeting_date'), ['class' => 'form-control date', 'placeholder' => '', 'required' => '']) !!}

@if($errors->has('meeting_date'))

{{ $errors->first('meeting_date') }}

@endif
{!! Form::label('deadline', 'Deadline Date*', ['class' => 'control-label']) !!} {!! Form::text('deadline', old('deadline'), ['class' => 'form-control date', 'placeholder' => '', 'required' => '']) !!}

@if($errors->has('deadline'))

{{ $errors->first('deadline') }}

@endif
{!! Form::label('review_date', 'Review Date*', ['class' => 'control-label']) !!} {!! Form::text('review_date', old('review_date'), ['class' => 'form-control date', 'placeholder' => '', 'required' => '']) !!}

@if($errors->has('review_date'))

{{ $errors->first('review_date') }}

@endif
{!! Form::label('progress_status', 'Job Status', ['class' => 'control-label']) !!}
{!! Form::label('remarks', 'Remarks', ['class' => 'control-label']) !!}
Reminder
{!! Form::label('email', 'Reminder Email', ['class' => 'control-label']) !!}
{!! Form::label('email_cc', 'Reminder CC', ['class' => 'control-label']) !!}
{!! Form::submit(trans('quickadmin.qa_save'), ['class' => 'btn btn-danger']) !!} {!! Form::close() !!} @stop @section('javascript') @parent @stop