{!! Form::open(['route' => 'batches.store', 'class' => 'create-batches', 'method' => 'POST', 'role' => 'form']) !!}
{!! 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('Create Batch', ['type' => 'submit', 'class' => 'btn btn-warning pull-right mt-4']) !!}
{!! Form::close() !!}