@extends('layouts.app') @section('title', 'Create Invoice') @section('breadcrumb') Staff Invoices Create Invoice @endsection @section('content')
@if(session('error'))
{{ session('error') }}
@endif

Create Invoice

Submit a job invoice for admin approval. Include your net amount and applicable GST.

@csrf
@if($jobs->isEmpty())
No jobs are currently assigned to you. Contact your manager to be assigned to a job.
@else @if($errors->has('job_id'))

{{ $errors->first('job_id') }}

@endif @endif
@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

Invoice Amount

$
@if($errors->has('net_amount'))

{{ $errors->first('net_amount') }}

@endif
GST Amount
$0.00
Total (inc. GST)
$0.00
This invoice will be submitted as Pending and sent to admin/accounts for approval. You will be notified once it is approved or rejected.
Cancel
@endsection