@extends('layouts.scaffold')
@section('title')
Add Batch Material|Golars Networks
@stop
@section('main')
{{ Form::open(array('route' => 'batchmaterials.store','id' => 'BatchMaterial','files' => true)) }}
-
{{ Form::label('material_name', 'Material Name:') }}
{{ Form::text('material_name') }}
-
{{ Form::label('material_file', 'File:') }}
{{ FOrm::select('server_mat', $materials)}}
{{ Form::file('material_file') }}
-
{{ Form::label('material_desc', 'Material Description:') }}
{{ Form::textarea('material_desc',null,array('class'=>'ckeditor')) }}
{{ Form::hidden('batch_id',$batch_id) }}
{{ Form::hidden('batchName',$batchName) }}
-
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
Cancel
{{ Form::close() }}
@if ($scripts="/js/batchmaterials/create_batchmaterials.js") @endif
@stop