@extends('layouts.admin') @section('content')
{{ trans('global.add') }} {{ trans('cruds.fuelStock.title_singular') }}
@csrf
{{-- Date --}}
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.fuelStock.fields.date_helper') }}
{{-- End Date --}}
@if($errors->has('fuel_type'))
{{ $errors->first('fuel_type') }}
@endif {{ trans('cruds.fuelStock.fields.fuel_type_helper') }}
{{-- End Fuel Type --}}
{{-- For Opening Stock --}}
@if($errors->has('opening_stock'))
{{ $errors->first('opening_stock') }}
@endif {{ trans('cruds.fuelStock.fields.opening_stock_helper') }}
{{-- End Opening Stock Control --}}
{{-- For Purchase --}}
@if($errors->has('purchase'))
{{ $errors->first('purchase') }}
@endif {{ trans('cruds.fuelStock.fields.opening_stock_helper') }}
{{-- End Purchase --}}
{{-- For Stock --}}
@if($errors->has('stock'))
{{ $errors->first('stock') }}
@endif {{ trans('cruds.fuelStock.fields.stock_helper') }}
{{-- End Stock Control --}}
{{-- For Closing DIPS --}}
@if($errors->has('closing_dips'))
{{ $errors->first('closing_dips') }}
@endif {{ trans('cruds.fuelStock.fields.closing_dips_helper') }}
{{-- End Closing DIPS Control --}}
{{-- For Computer Sales in liter --}}
@if($errors->has('sale'))
{{ $errors->first('sale') }}
@endif {{ trans('cruds.fuelStock.fields.sale_helper') }}
{{-- End Computer Sales in liter Control --}}
{{-- For Water level --}}
@if($errors->has('water_level'))
{{ $errors->first('water_level') }}
@endif {{ trans('cruds.fuelStock.fields.water_level_helper') }}
{{-- End Water level Control --}}
{{-- For Discription --}}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.sheelCard.fields.description_helper') }}
{{-- End Discription --}}
@endsection @section('scripts') @endsection