@extends('layouts.scaffold')
@section('title')
Edit Batch Assignment|Golars Networks
@stop
@section('main')
{{ Form::model($batchassignment, array('method' => 'PATCH', 'route' => array('batchassignments.update', $batchassignment->id))) }}
{{ Form::open(array('route' => 'batchassignments.update','files' => true,'id' => 'assignupdate')) }}
{{ Form::label('stdassin_upload','Assignment :') }}
{{ Form::file('stdassin_upload') }}
{{ Form::submit('Submit', array('class' => 'btn btn-info')) }}
{{ Form::close() }}
{{ Form::close() }}
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
@stop