@extends('layouts.master') @section('title', 'Edit Order') @section('content') @if(Session::has('success')) {{ Session::get('success') }} @endif @csrf Order Details Order Status Select Status @if($status) @foreach($status as $status) status == $status ? 'selected' : '' }}> {{ $status }} @endforeach @endif Delivery Zone Select Delivery Zone @if($locations) @foreach($locations as $location) postcode == $location->zip ? 'selected' : '' }}> {{ $location->zip.' - ' .$location->location }} @endforeach @endif Waste Type Select Waste Type @if($wastes) @foreach($wastes as $waste) waste == $waste->id ? 'selected' : '' }}> {{ $waste->name }} @endforeach @endif Bin Size Select Bin Size @if($containers) @foreach($containers as $container) bins == $container->id ? 'selected' : '' }}> {{ $container->name }} @endforeach @endif Delivery Date Collection Date Price $ Customer Details Name Email Phone Address Suburb Instructions @endsection @section('pageJS') @endsection