@extends('layouts.app') @section('title', __('Smartinventory::inventory.inventory')) @section('content')

@lang('Smartinventory::inventory.inventory')

@lang('Smartinventory::inventory.create_new_inventory')

@csrf @component('components.widget', ['class' => 'box-solid'])
{!! Form::label('inventory_type', __('Smartinventory::inventory.inventory_type')) !!} {!! Form::select('inventory_type', [ 'all_products' => __('Smartinventory::inventory.all_products'), 'specific_product' => __('Smartinventory::inventory.specific_product'), 'brand' => __('product.brand'), 'category' => __('product.category'), 'sub_category' => __('product.sub_category'), ], null, [ 'class' => 'form-control', 'id' => 'inventory_type', ]) !!}
{{-- Start date --}}
{!! Form::label('inventory_start_date', __('Smartinventory::inventory.inventory_start_date') . ':*') !!}
{!! Form::text('inventory_start_date', null, ['class' => 'form-control', 'required']); !!}
{{-- Inventory End Date --}}
{!! Form::label('inventory_end_date', __("Smartinventory::inventory.inventory_end_date") . ':*') !!}
{!! Form::text('inventory_end_date',null, ['class' => 'form-control', 'required']); !!}


@endcomponent

@endsection @section('javascript') @include('Smartinventory::partials.mainscript') @endsection