@extends('layouts.admin') @section('page-title') {{__('Bill Create')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('content')
{{ Form::open(array('url' => 'bill','class'=>'w-100')) }}
{{ Form::label('vender_id', __('Vendor'),['class'=>'form-label']) }}* {{ Form::select('vender_id', $venders,$vendorId, array('class' => 'form-select','id'=>'vender','data-url'=>route('bill.vender'),'required'=>'required')) }}
{{ Form::label('bill_date', __('Bill Date'),['class'=>'form-label']) }}*
{{ Form::label('due_date', __('Due Date'),['class'=>'form-label']) }}*
{{ Form::label('bill_number', __('Bill Number'),['class'=>'form-label']) }}
{{ Form::label('category_id', __('Category'),['class'=>'form-label']) }}* {{ Form::select('category_id', $category,null, array('class' => 'form-select','required'=>'required')) }}
{{ Form::label('order_number', __('Order Number'),['class'=>'form-label']) }}
{{ Form::number('order_number', '', array('class' => 'form-control')) }}
{{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- {{Form::label('sku',__('SKU')) }}--}}* {{-- {!!Form::text('sku', null,array('class' => 'form-control','required'=>'required')) !!}--}} {{--
--}} {{--
--}} @if(!$customFields->isEmpty())
@include('customFields.formBuilder')
@endif
{{ Form::close() }}
@endsection