@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.esealtracking.title_singular') }}
@csrf
@if($errors->has('truckno'))
{{ $errors->first('truckno') }}
@endif {{ trans('cruds.esealtracking.fields.truckno_helper') }}
@if($errors->has('container_no'))
{{ $errors->first('container_no') }}
@endif {{ trans('cruds.esealtracking.fields.container_no_helper') }}
@if($errors->has('size'))
{{ $errors->first('size') }}
@endif {{ trans('cruds.esealtracking.fields.size_helper') }}
@if($errors->has('eseal_no'))
{{ $errors->first('eseal_no') }}
@endif {{ trans('cruds.esealtracking.fields.eseal_no_helper') }}
@if($errors->has('shipping_bill'))
{{ $errors->first('shipping_bill') }}
@endif {{ trans('cruds.esealtracking.fields.shipping_bill_helper') }}
@if($errors->has('shipping_date'))
{{ $errors->first('shipping_date') }}
@endif {{ trans('cruds.esealtracking.fields.shipping_date_helper') }}
@if($errors->has('sealing_date'))
{{ $errors->first('sealing_date') }}
@endif {{ trans('cruds.esealtracking.fields.sealing_date_helper') }}
@if($errors->has('custodian_name'))
{{ $errors->first('custodian_name') }}
@endif {{ trans('cruds.esealtracking.fields.custodian_name_helper') }}
@if($errors->has('reach_time'))
{{ $errors->first('reach_time') }}
@endif {{ trans('cruds.esealtracking.fields.reach_time_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.esealtracking.fields.status_helper') }}
@if($errors->has('remark'))
{{ $errors->first('remark') }}
@endif {{ trans('cruds.esealtracking.fields.remark_helper') }}
@endsection