@extends('admin.layout') @section('content') Create Order Dashboard Order List Create Order Create Order Order List @csrf Student Select User @if (!empty($users)) @foreach ($users as $user) {!! $user->email . '-' . $user->phone !!} @endforeach @endif @if ($errors->has('user_id')) {{ $errors->first('user_id') }} @endif Product Select Product @if (!empty($products)) @foreach ($products as $product) {!! $product->name . '-(' . $product->type . ')' !!} @endforeach @endif @if ($errors->has('prod_id')) {{ $errors->first('prod_id') }} @endif Mode Select Mode @if ($errors->has('mode_id')) {{ $errors->first('mode_id') }} @endif Duration (days) @if ($errors->has('duration')) {{ $errors->first('duration') }} @endif Product Mode @if ($errors->has('mode')) {{ $errors->first('mode') }} @endif Views @if ($errors->has('views')) {{ $errors->first('views') }} @endif Price @if ($errors->has('price')) {{ $errors->first('price') }} @endif {{-- State List --}} Place of Supply -select-state-- Andhra Pradesh Andaman and Nicobar Islands Arunachal Pradesh Assam Bihar Chandigarh Chhattisgarh Dadar and Nagar Haveli Daman and Diu Delhi Lakshadweep Puducherry Goa Gujarat Haryana Himachal Pradesh Jammu and Kashmir Jharkhand Karnataka Kerala Madhya Pradesh Maharashtra Manipur Meghalaya Mizoram Nagaland Odisha Punjab Rajasthan Sikkim Tamil Nadu Telangana Tripura Uttar Pradesh Uttarakhand West Bengal @if ($errors->has('state')) {{ $errors->first('state') }} @endif Submit @endsection @push('footer-script') @endpush