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

Order Products

Edit order_product

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($order_product, ['method' => 'PATCH', 'action' => ['Order ProductsController@update', $order_product->id]]) !!}
{!! 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']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop