@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.shippingAddress.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('shipable'))
{{ $errors->first('shipable') }}
@endif {{ trans('cruds.shippingAddress.fields.shipable_helper') }}
@if($errors->has('shipable_type'))
{{ $errors->first('shipable_type') }}
@endif {{ trans('cruds.shippingAddress.fields.shipable_type_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.shippingAddress.fields.name_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.shippingAddress.fields.address_helper') }}
@if($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif {{ trans('cruds.shippingAddress.fields.contact_number_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.shippingAddress.fields.status_helper') }}
@endsection