@extends('layouts.app') @section('title') Add Purchase Request @stop @section('breadcrumb') @stop @section('css') @stop @section('content')

Purchase Request

{{csrf_field()}}
@if ($errors->has('project')) {{ $errors->first('project') }} @endif
@if ($errors->has('department')) {{ $errors->first('department') }} @endif

Item List

@if ($errors->has('items.*')) {{ $errors->first('items.*') }} @endif
@if ($errors->has('price.*')) {{ $errors->first('price.*') }} @endif

Approvals

  • Select approval roles from below.
@if(Session::has('role_orders')) {{ Session::get('role_orders') }} @endif
@stop @section('js') @stop