18 lines
622 B
PHP
18 lines
622 B
PHP
{{-- resources/views/admin/neighbor_stations/import.blade.php --}}
|
|
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<h1>近傍駅 インポート</h1>
|
|
|
|
<form method="POST" action="{{ route('neighbor_stations_import') }}" enctype="multipart/form-data">
|
|
@csrf
|
|
<div class="form-group">
|
|
<label for="csv_file">CSVファイルを選択:</label>
|
|
<input type="file" name="csv_file" class="form-control" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">アップロード</button>
|
|
</form>
|
|
|
|
<a href="{{ route('neighbor_stations') }}" class="btn btn-secondary mt-3">戻る</a>
|
|
@endsection
|