@extends('layouts.app') @section('content')
@include('orders.order-info')
@include('orders.order-address')
@include('orders.order-user-info')
{!! Form::model($data, ['method' => 'PATCH','enctype'=>'multipart/form-data', 'route' => ['orders.update', $data->id]]) !!} @csrf
{!! Form::select('order_status_id', $orderStatus, null, ['class' => 'form-select']) !!}
{!! Form::close() !!}
@include('orders.order-products')
@endsection