@extends('merchant.layout') @section('title','Create Order') @section('content')

Create New Order

{{-- SUCCESS MESSAGE --}} @if(session('success'))
{{ session('success') }}
@endif {{-- ERROR MESSAGE --}} @if ($errors->any())
@endif
@csrf
{{-- Order No --}}
{{-- Customer Name --}}
{{-- Customer Phone --}}
{{-- Alternate Phone --}}
{{-- Pickup Location --}}
{{-- Delivery Address --}}
{{-- Item Type --}}
{{-- Weight --}}
{{-- Amount --}}
{{-- Payment Type --}}
{{-- Payment Method --}}
{{-- Status --}}
{{-- Description --}}
{{-- Notes --}}
{{-- Buttons --}}
Cancel
@endsection