@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.export.title_singular') }}
{{ trans('global.back_to_list') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
IEC Code
{{ trans('cruds.export.fields.trailer_reg_number') }}
@if($errors->has('trailer_reg_number'))
{{ $errors->first('trailer_reg_number') }}
@endif
{{ trans('cruds.export.fields.trailer_reg_number_helper') }}
{{ trans('cruds.export.fields.container_number') }}
@if($errors->has('container_number'))
{{ $errors->first('container_number') }}
@endif
{{ trans('cruds.export.fields.container_number_helper') }}
{{ trans('cruds.export.fields.shipping_bill') }}
@if($errors->has('shipping_bill'))
{{ $errors->first('shipping_bill') }}
@endif
{{ trans('cruds.export.fields.shipping_bill_helper') }}
{{ trans('cruds.export.fields.shipping_date') }}
@if($errors->has('shipping_date'))
{{ $errors->first('shipping_date') }}
@endif
{{ trans('cruds.export.fields.shipping_date_helper') }}
{{ trans('cruds.export.fields.destination_custom') }}
@foreach($destination_customs as $id => $entry)
destination_custom->id ?? '') == $id ? 'selected' : '' }}>{{ $entry }}
@endforeach
@if($errors->has('destination_custom'))
{{ $errors->first('destination_custom') }}
@endif
{{ trans('cruds.export.fields.destination_custom_helper') }}
{{ trans('cruds.export.fields.eseal') }}
@foreach($eseals as $id => $entry)
eseal->id ?? '') == $id ? 'selected' : '' }}>{{ $entry }}
@endforeach
@if($errors->has('eseal'))
{{ $errors->first('eseal') }}
@endif
{{ trans('cruds.export.fields.eseal_helper') }}
{{ trans('cruds.export.fields.sealing_date') }}
@if($errors->has('sealing_date'))
{{ $errors->first('sealing_date') }}
@endif
{{ trans('cruds.export.fields.sealing_date_helper') }}
{{ trans('cruds.export.fields.shipping_time') }}
@if($errors->has('shipping_time'))
{{ $errors->first('shipping_time') }}
@endif
{{ trans('cruds.export.fields.sealing_date_helper') }}
{{ trans('cruds.export.fields.container_size') }}
@foreach($container_sizes as $id => $entry)
container_size->id ?? '') == $id ? 'selected' : '' }}>{{ $entry }}
@endforeach
@if($errors->has('container_size'))
{{ $errors->first('container_size') }}
@endif
{{ trans('cruds.export.fields.container_size_helper') }}
{{ trans('global.save') }}
Cancel
@endsection