@extends('layouts.scaffold')
@section('title')
Add Batch Assignment|Golars Networks
@stop
@section('main')
{{ Form::open(array('route' => 'batchassignments.store','id' => 'batchcreate','files' => true)) }}
-
{{ Form::label('assignment_name', 'Assignment Name: ') }}
{{ Form::text('assignment_name') }}
-
{{ Form::label('assignment_file', 'File: ') }}
{{ Form::file('assignment_file') }}
-
{{ Form::label('assignment_content', 'Assignment Content:') }}
{{ Form::text('assignment_content') }}
-
{{ Form::label('submission_date','Submission Date:')}}
{{ Form::text('submission_date',null,array('class' => 'datepicker'))}}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
Cancel
{{ Form::hidden('batch_id',$batch_id)}}
{{ Form::hidden('rec_id','norec')}}
{{ Form::hidden('batchName',$batchName)}}
{{ Form::close() }}
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
@if ($scripts="/js/batchassignments/create_batchassignments.js") @endif
@stop