@extends('layouts.app') @section('title','Gutschrift importieren') @section('breadcrumb') @endsection @section('content')

PDF hochladen

@include('includes.errors') {!! Form::open(['action' => 'PdfDocumentController@upload','method' => 'post','enctype' => 'multipart/form-data']) !!}
{!! Form::label('client_id','Kunde auswählen') !!} {!! Form::select('client_id',$clients->pluck('name','id')->prepend('Automatisch','')->all(),null,['class' => 'form-control']) !!}
{!! Form::submit('Hochladen',['class' => 'btn btn-primary']) !!} {!! Form::close() !!} @endsection