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

Stocks

Edit stock

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($stock, ['method' => 'PATCH', 'action' => ['StocksController@update', $stock->id]]) !!}
{!! 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('current_stock', 'Current Stock: ') !!} {!! Form::text('current_stock', null, ['class' => 'form-control']) !!}
{!! Form::label('store_id', 'Store: ') !!} {!! Form::select('store_id', $store, null, ['class' => 'form-control']) !!}
{!! Form::label('status_code', 'Status Code: ') !!} {!! Form::select('status_code', $status, null, ['class' => 'form-control']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop