@extends('layouts.scaffold')
@section('title')
Edit Batch Attendance|Golars Networks
@stop
@section('main')
Edit Batchattendance
{{ Form::model($batchattendance, array('method' => 'PATCH', 'route' => array('batchattendances.update', $batchattendance->id))) }}
-
{{ Form::label('student_name', 'Student_name:') }}
{{ Form::text('student_name') }}
-
{{ Form::submit('Update', array('class' => 'btn btn-info')) }}
{{ link_to_route('batchattendances.show', 'Cancel', $batchattendance->id, array('class' => 'btn')) }}
{{ Form::close() }}
@if ($errors->any())
{{ implode('', $errors->all('- :message
')) }}
@endif
@stop