38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
@extends('layouts.app')
|
|
@section('title', __('lang_v1.add_opening_stock'))
|
|
|
|
@section('content')
|
|
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1 class="tw-text-xl md:tw-text-3xl tw-font-bold tw-text-black">@lang('lang_v1.add_opening_stock')</h1>
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
{!! Form::open(['url' => action([\App\Http\Controllers\OpeningStockController::class, 'save']), 'method' => 'post', 'id' => 'add_opening_stock_form' ]) !!}
|
|
{!! Form::hidden('product_id', $product->id); !!}
|
|
@include('opening_stock.form-part')
|
|
<div class="row">
|
|
<div class="col-sm-12 text-center">
|
|
<button type="submit" class="btn btn-primary btn-big">@lang('messages.save')</button>
|
|
</div>
|
|
</div>
|
|
|
|
{!! Form::close() !!}
|
|
</section>
|
|
@stop
|
|
@section('javascript')
|
|
<script src="{{ asset('js/opening_stock.js?v=' . $asset_v) }}"></script>
|
|
<script type="text/javascript">
|
|
$(document).ready( function(){
|
|
__init_datetime_field('.os_date', {
|
|
widgetPositioning: {
|
|
horizontal: 'right',
|
|
vertical: 'bottom'
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
@endsection
|