Fix CSV imports giving Storage class not found #454 (#462)

* Fix CSV imports giving Storage class not found #454

* Update yarn files for security alert
This commit is contained in:
Nabeel S
2019-12-10 13:53:55 -05:00
committed by GitHub
parent d9a1e6aba7
commit 1f65b744a0
22 changed files with 658 additions and 578 deletions

View File

@@ -4,7 +4,7 @@
{{ Form::open(['method' => 'post', 'route' => $route, 'files' => true]) }}
<div class="form-group col-12">
{{ Form::label('csv_file', 'Chose a CSV file to import') }}
{{ Form::label('csv_file', 'Choose a CSV file to import') }}
{{ Form::file('csv_file', ['accept' => '.csv']) }}
<p class="text-danger">{{ $errors->first('csv_file') }}</p>
</div>