@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\StockUpdationController::class, 'stockAdjustment']), '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::close() !!} @endcan
@stop @section('javascript') @endsection