All checks were successful
Deploy preview (main_kin) / deploy (push) Successful in 12s
17 lines
537 B
PHP
17 lines
537 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<h1>近傍駅 インポート</h1>
|
|
|
|
<form method="POST" action="{{ route('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('stations') }}" class="btn btn-secondary mt-3">戻る</a>
|
|
@endsection
|