@extends('layouts.admin') @section('page-title') {{__('Purchase Create')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('content')
{{ Form::open(array('url' => 'purchase','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('warehouse_id', __('Warehouse'),['class'=>'form-label']) }}* {{ Form::select('warehouse_id', $warehouse,null, array('class' => 'form-select','required'=>'required')) }}
{{ Form::label('category_id', __('Category'),['class'=>'form-label']) }}* {{ Form::select('category_id', $category,null, array('class' => 'form-select','required'=>'required')) }}
{{ Form::label('purchase_date', __('Purchase Date'),['class'=>'form-label']) }}* {{Form::date('purchase_date',null,array('class'=>'form-control','required'=>'required'))}}
{{ Form::label('purchase_number', __('Purchase Number'),['class'=>'form-label']) }}*
{{ Form::close() }}
@endsection