2023-01-04 01:08:50 +01:00
|
|
|
<form action="{{ path('location-bulk-add') }}" method="post" enctype="multipart/form-data">
|
|
|
|
<label for="myfile">Upload CSV</label>
|
|
|
|
<br>
|
|
|
|
<input type="file" name="myfile" id="myfile"></div>
|
|
|
|
<br/>
|
2023-01-24 04:59:51 +01:00
|
|
|
<label>Input Type</label><br/>
|
|
|
|
<select name="input_type">
|
|
|
|
<option value="" disabled selected>Choose Upload Type
|
|
|
|
</option>
|
|
|
|
<option value="tbs">The Bad Space Custom</option>
|
|
|
|
<option value="fedifence">Fedifence</option>
|
|
|
|
</select>
|
|
|
|
<br/>
|
2023-01-04 01:08:50 +01:00
|
|
|
<input type="hidden" name="token" value="{{ csrf_token('upload') }}"/>
|
|
|
|
<button type="submit">Upload Locations</button>
|
|
|
|
</form>
|