{!! Form::model($invoice, ['method' => 'PUT', 'route' => ['admin.invoices.update', $invoice->id], 'files' => true,]) !!}
{!! Form::button(trans('global.app_save'), ['class' => 'btn btn-info', 'type' => 'update']) !!}
{!! Form::close() !!}
{!! Form::select('internal_job_id', $jobs, old('internal_job_id'), ['class' => 'form-control select2','id' => 'internal_job_id']) !!}
{!! Form::label('internal_job_id', trans('global.invoices.fields.internal_job_id'), ['class' => 'floating-label main-label']) !!}
@if($errors->has('internal_job_id'))
{{ $errors->first('internal_job_id') }}
@endif
@include('admin.invoices.customer')
{!! Form::text('invoice_number', old('invoice_number'), ['class' => 'form-control', 'readonly' => true]) !!}
{!! Form::label('invoice_number', trans('global.invoices.fields.invoice_number').'', ['class' => 'floating-label']) !!}
@if($errors->has('invoice_number'))
{{ $errors->first('invoice_number') }}
@endifInvoice Items
@forelse ($invoice->items as $item)
@empty
@endforelse
No Item Available
{!! Form::select('status', $status_list, old('status'), ['class' => 'form-control select2','id' => 'status']) !!}
{!! Form::label('status', 'Status', ['class' => 'floating-label main-label']) !!}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif