@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.salesOrder.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('agent'))
{{ $errors->first('agent') }}
@endif {{ trans('cruds.salesOrder.fields.agent_helper') }}
@if($errors->has('so_no'))
{{ $errors->first('so_no') }}
@endif {{ trans('cruds.salesOrder.fields.so_no_helper') }}
@if($errors->has('bill_to'))
{{ $errors->first('bill_to') }}
@endif {{ trans('cruds.salesOrder.fields.bill_to_helper') }}
@if($errors->has('ship_to'))
{{ $errors->first('ship_to') }}
@endif {{ trans('cruds.salesOrder.fields.ship_to_helper') }}
@if($errors->has('so_date'))
{{ $errors->first('so_date') }}
@endif {{ trans('cruds.salesOrder.fields.so_date_helper') }}
@if($errors->has('payment_term'))
{{ $errors->first('payment_term') }}
@endif {{ trans('cruds.salesOrder.fields.payment_term_helper') }}
@if($errors->has('remark'))
{{ $errors->first('remark') }}
@endif {{ trans('cruds.salesOrder.fields.remark_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.salesOrder.fields.status_helper') }}
@endsection