@extends('layouts.default') @section('title', 'Create batch') @section('header-links') @include('includes.headers.vendor_companies') @endsection @section('header-links') @include('includes.headers.batches') @endsection @section('new_button') remove_red_eye Batch list @endsection @section('content')
{!! Form::model($batch, ['url'=>['batch', $batch->id], 'method'=>'PUT', 'id'=>'update_batch_form']) !!} {{ csrf_field() }}
{!! Form::textGroup('batch_id', 'Batch ID', $batch->batch_id, ['required'=>'required', 'maxlength'=>'50', 'id'=>'batch_id']) !!}
{!! Form::textGroup('name', 'Batch name', $batch->name, ['required'=>'required', 'maxlength'=>'50', 'id'=>'name']) !!}
{{ Form::textGroup('start_date', 'Start date', $batch->start_date, ['id' => 'start_date', 'required'=>'required']) }}
{{ Form::textGroup('end_date', 'End date', $batch->end_date, ['id'=>'end_date', 'required'=>'required']) }}
{!! Form::selectGroup('technologies[]', 'Technologies', $technologies, $btechnologies, ['id'=>'technologies', 'multiple', 'data-live-search'=>'true', 'required'=>'required']) !!}
{!! Form::selectGroup('trainer_id', 'Trainer', $trainers, $batch->trainer_id, ['id'=>'technologies', 'data-live-search'=>'true', 'required'=>'required']) !!}
{!! Form::selectGroup('status', 'Status', ['1'=>'Active', '0'=>'Inactive'], $batch->status, ['id'=>'status']) !!}
{{ Form::saveButton('Save', ['class'=>'col-md-3']) }}
@include('includes.datepicker') @stop