@extends('layouts.admin.app') @section('title') Add Batch @stop @section('main')
Manage Batches
{!! Form::open(['method'=>'POST','action' => 'AdminBatchesController@store']) !!}
{!! Form::label('customer_id', 'Customer') !!} {!! Form::select('customer_id', $customers, null , ['class'=>'form-control select2', 'placeholder'=>'Search for a customer']) !!} @if ($errors->has('customer_id')) {{ $errors->first('customer_id') }} @endif
{!! Form::label('order_no', 'Order number') !!} {!! Form::text('order_no', null, ['class'=>'form-control', 'placeholder' =>'Enter Order Number']) !!} @if ($errors->has('order_no')) {{ $errors->first('order_no') }} @endif
{!! Form::label('batch', 'Batch') !!} {!! Form::text('batch', null, ['class'=>'form-control','id'=>'batch']) !!} @if ($errors->has('batch')) {{ $errors->first('batch') }} @endif
{!! Form::submit('Add Batch', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop