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

Update Delivery Chalan

{{ Form::model($delivery_chalan, array('route' => array('dc.update', $delivery_chalan->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')) }} @error('notes') {{ $message }} @enderror
@endsection