@extends('layouts.app') @section('content')

Update Purchase Order

{{ Form::model($purchase_order, array('route' => array('po.update', $purchase_order->id),'class' => 'form-horizontal', 'method' => 'PUT')) }}
{{ Form::text('reference', null, array('class' => 'form-control')) }} @if($errors->has('reference')) {{ $errors->first('reference') }} @endif
@if($errors->has('contact_person')) {{ $errors->first('contact_person') }} @endif
{{ Form::textarea('notes', null, array('class' => 'form-control', 'rows' => '2')) }} @if($errors->has('notes')) {{ $errors->first('notes') }} @endif
@endsection