@extends('layouts.app') @section('title', __('Stock Mismatch Checker')) @section('content')

@lang('Stock Mismatch Checker') @lang('Identify products with incorrect stock values')

@lang('Filter Stock Mismatches')

{!! Form::label('location_id', __('business.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'placeholder' => __('messages.all'), 'id' => 'location_filter']); !!}
{!! Form::label('mismatch_type', __('Mismatch Type') . ':') !!} {!! Form::select('mismatch_type', ['all' => 'All Mismatches', 'positive' => 'Stock Higher Than Expected', 'negative' => 'Stock Lower Than Expected'], 'all', ['class' => 'form-control select2', 'id' => 'mismatch_type_filter']); !!}

@endsection @section('javascript') @endsection