@extends('layouts.master') @section('title', 'Add Order') @section('content') @if(Session::has('error')) {{ Session::get('error') }} @endif @if(Session::has('success')) {{ Session::get('success') }} @endif @csrf Order Details Order Status Select Status @if($status) @foreach($status as $status) {{ $status }} @endforeach @endif Delivery Zone Select Delivery Zone @if($locations) @foreach($locations as $location) zip ? 'selected' : '' }}> {{ $location->zip.' - ' .$location->location }} @endforeach @endif Waste Type Select Waste Type @if($wastes) @foreach($wastes as $waste) id ? 'selected' : '' }}> {{ $waste->name }} @endforeach @endif Bin Size Select Bin Size @if($containers) @foreach($containers as $container) id ? 'selected' : '' }}> {{ $container->name }} @endforeach @endif Delivery Date Collection Date Price $ Note: It will calculate automatically but you can enter manually if you want then use price as you entered. Payment Method Pay on Delivery Pay by Bank Customer Details Name Email Phone Address Suburb Instructions @endsection @section('pageJS') @endsection