{!! Form::model($batch, ['method' => 'PATCH', 'route' => ['batches.update', $srs->encode($batch->id)]]) !!}
{!! Form::label('batch_name', 'Batch Name') !!} {!! Form::text( 'batch_name', old('batch_name'), $errors->has('batch_name') ? ['placeholder' => 'Batch Name.', 'class' => 'form-control is-invalid', 'id' => 'batch_name'] : ['placeholder' => 'Batch Name', 'class' => 'form-control', 'id' => 'category_name'], ) !!}
{!! Form::button('Change Batch', ['type' => 'submit', 'class' => 'btn btn-warning pull-right mt-4']) !!}
{!! Form::close() !!}