@extends('layouts.app') @section('title', __('lang_v1.find_invoice')) @section('content')

@lang('lang_v1.find_invoice')

@if (!empty($video) && auth()->user()->can('edu_videos.view')) @include('video.video_button', ['fileName' => $video ]) @endif
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.find_invoice')])
{!! Form::label('transaction_date', __('lang_v1.date') . ':*') !!}
{!! Form::text('transaction_date', null, ['class' => 'form-control', 'required']); !!}
{!! Form::label('product_ids', __('product.product_name') . ':') !!} {!! Form::select('product_ids[]', [], null, [ 'class' => 'form-control select2-product', 'id' => 'product_ids', 'multiple' => 'multiple', 'style' => 'width: 100%;', ]) !!}
@lang('sale.invoice_no') @lang('sale.total_amount') @lang('messages.actions')
@endcomponent @include('video.video_modal')
@stop @section('javascript') @endsection