@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New order_product @parent @stop {{-- Page content --}} @section('content')

Order Products

Create a new order_product

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/order_products']) !!}
{!! Form::label('order_id', 'Order: ') !!} {!! Form::select('order_id', $order, null, ['class' => 'form-control']) !!}
{!! Form::label('product_id', 'Product: ') !!} {!! Form::select('product_id', $product, null, ['class' => 'form-control']) !!}
{!! Form::label('quantity', 'Quantity: ') !!} {!! Form::text('quantity', null, ['class' => 'form-control']) !!}
{!! Form::label('price', 'Price: ') !!} {!! Form::text('price', null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop