@extends('layouts.app') @section('title', __('Physical Stock Verification')) @section('content')

Physical Stock Verification

{{--

Physical Stock Verification

@can('brand.create') @endcan
--}}
@can('brand.view') {!! Form::open(['url' => action([\App\Http\Controllers\BulkDiscountController::class, 'store']), 'method' => 'post']) !!}
{!! Form::label('location_id', __('sale.location') . ':*') !!} {!! Form::select('location_id', $locations, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control select2 location_id', 'required']); !!}
{!! Form::label('location_id', 'Search On :*') !!} {!! Form::select('discount_on', $discount_on, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control discount_on select2', 'required']); !!}
{!! Form::label('brand_id', __('product.brand') . ':') !!} {!! Form::select('brand_id', $brands, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control brand_id select2']); !!}
{!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'), 'disabled' => $search_disable]); !!}
{{--
--}}
{!! Form::close() !!} @endcan
@stop @section('javascript') @endsection