@extends('layouts.app') @section('title', 'Package Create') @section('content')

Package Create

@csrf
{!! Form::label('customer_id', __('contact.customer') . ':') !!}
@php $default_customer = null; if(count($customers) > 1){ $default_customer = array_key_first($customers->toArray()); } @endphp {!! Form::select('customer_id[]', $customers, $default_customer, ['class' => 'form-control select2','multiple', 'required']); !!}
{!! Form::label('sale_product','Sale Product') !!} {!! Form::select('sale_product', $products,false, ['class' => 'form-control select2', 'required','Placeholder' => 'Select Product']); !!}
@component('components.widget', ['class' => 'box-solid'])
{!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'), 'autofocus' => true, ]); !!}
@lang('sale.product') @lang('sale.qty') Price
Total : 0
@endcomponent
@endsection @section('javascript') @endsection