@extends('layouts.admin.app') @section('title') Edit Batch @stop @section('main')
Manage Batches
{!! Form::open(['method'=>'PUT','action' => ['AdminBatchesController@update',$batch->id]]) !!}
{!! Form::label('customer_id', 'Customer') !!} {!! Form::select('customer_id', $customers, $batch->customer_id , ['class'=>'form-control select2']) !!} @if ($errors->has('customer_id')) {{ $errors->first('customer_id') }} @endif
{!! Form::label('order_no', 'Order number') !!} {!! Form::text('order_no', $batch->order_no, ['class'=>'form-control', 'placeholder' =>'Last Name']) !!} @if ($errors->has('order_no')) {{ $errors->first('order_no') }} @endif
{!! Form::label('batch', 'Batch') !!} {!! Form::text('batch', $batch->batch, ['class'=>'form-control','id'=>'batch']) !!} @if ($errors->has('batch')) {{ $errors->first('batch') }} @endif
Go Back {!! Form::submit('Update Batch', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop