You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
491 B
10 lines
491 B
<legend>{{ trans('invoice.detail') }}</legend>
|
|
{{ Form::open(['route' => ['cart.draft-proccess', $draft->draftKey], 'method' => 'patch']) }}
|
|
{!! FormField::select('project_id', $projects, [
|
|
'label' => trans('invoice.project'),
|
|
'value' => $draft->projectId,
|
|
'required' => true,
|
|
] ) !!}
|
|
{!! FormField::textarea('notes', ['label' => trans('invoice.notes'), 'value' => $draft->notes]) !!}
|
|
{{ Form::submit(trans('invoice.proccess'), ['class' => 'btn btn-info']) }}
|
|
{{ Form::close() }}
|