@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.speedPoint.title_singular') }}
@csrf
@if($errors->first('reconcilation_type'))
{{ $errors->first('reconcilation_type') }}
@endif {{ trans('cruds.speedPoint.fields.reconcilation_type_helper') }}
@if($errors->first('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.speedPoint.fields.date_helper') }}
@if($errors->first('batch_no'))
{{ $errors->first('batch_no') }}
@endif {{ trans('cruds.speedPoint.fields.batch_no_helper') }}
@if($errors->first('bank_account'))
{{ $errors->first('bank_account') }}
@endif {{ trans('cruds.speedPoint.fields.bank_account_helper') }}
@foreach($speedpoint as $key => $speed) @endforeach
{{ trans('cruds.speedPoint.fields.shift_no') }} {{ trans('cruds.speedPoint.fields.seq_no') }} {{ trans('cruds.speedPoint.fields.amount') }}
@if($errors->first('shift.*'))
{{ $errors->first('shift.*') }}
@endif
@if($errors->first('seq_no.*'))
{{ $errors->first('seq_no.*') }}
@endif {{ trans('cruds.speedPoint.fields.seq_no_helper') }}
@if($errors->first('amount.*'))
{{ $errors->first('amount.*') }}
@endif {{ trans('cruds.speedPoint.fields.amount_helper') }}
@if($key != 0) @endif
@endsection @section('scripts') @endsection