2026-03-15 17:08:23 +07:00
< div class = " modal fade " id = " bulk-upload-modal " tabindex = " -1 " aria - labelledby = " exampleModalLabel " aria - hidden = " true " >
< div class = " modal-dialog modal-dialog-centered " >
< div class = " modal-content " >
<!-- Modal Header -->
< div class = " modal-header " >
< h5 class = " modal-title " id = " exampleModalLabel " > {{ __ ( 'Bulk Upload' ) }} </ h5 >
< button type = " button " class = " btn-close " data - bs - dismiss = " modal " aria - label = " Close " ></ button >
</ div >
<!-- Modal Body -->
< div class = " modal-body " >
< div class = " erp-table-section " >
< div class = " container-fluid " >
< div class = " border-0 " >
< div class = " card-bodys " >
< form action = " { { route('business.purchases.bulk-cart-store') }} " method = " post " enctype = " multipart/form-data "
class = " bulk_cart_upload_form " >
@ csrf
< div class = " bulk-upload-container w-100 " >
< div class = " d-flex justify-content-between align-items-center w-100 " >
< div class = " bulk-input w-100 " >
2026-05-14 22:19:01 +07:00
< input class = " form-control " type = " file " name = " file " required >
2026-03-15 17:08:23 +07:00
</ div >
</ div >
< div class = " d-flex align-items-center justify-content-center gap-2 flex-wrap " >
< button type = " submit " class = " add-order-btn process-csv-btn rounded-2 border-0 submit-btn mt-3 " > {{ __ ( 'Submit' )}} </ button >
< a href = " { { asset('assets/purchase_product_bulk_upload.xlsx') }} " download = " purchase_product_bulk_upload.xlsx " class = " download-file-btn mt-3 " > {{ __ ( 'Download Sample File' )}} </ a >
</ div >
</ div >
< div class = " bulk-upload-container mt-3 " >
< div class = " instruction-header " >
< h5 > {{ __ ( 'Instructions' ) }} </ h5 >
< div class = " mt-3 " >
2026-05-14 22:19:01 +07:00
< h6 >< strong > {{ __ ( 'Note' ) }} : </ strong > {{ __ ( ' Please follow the instructions below to upload your file.' )}} </ h6 >
2026-03-15 17:08:23 +07:00
< ul >
2026-05-14 22:19:01 +07:00
< li >< b > {{ __ ( '1.' )}} </ b > {{ __ ( ' Download the sample file first and add all your purchases data to it.' )}} </ li >
2026-03-15 17:08:23 +07:00
< li >< b > {{ __ ( '2.' )}} </ b > < span class = " text-danger " >*</ span > {{ __ ( 'Indicates a required field. If you do not provide the required fields, the system will ignore except product information.' )}} </ li >
< li >< b > {{ __ ( '3.' )}} </ b > {{ __ ( 'After adding all your purchases, please save the file and then upload the updated version.' )}} </ li >
</ ul >
</ div >
</ div >
</ div >
</ form >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >