so-manager-dev.com/resources/views/regular_contract/upload_identity.blade.php

40 lines
2.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layouts.app')
@section('content')
<main>
<header class="alert alert-success">
<h4 class="container">契約更新 >本人確認書類のアップロード</h4>
</header>
@if ($errors->has('user_idcard'))
<div class="alert alert-danger text-center">{{ $errors->first('user_idcard') }}</div>
@endif
<section id="" class="container mt30 mb50">
<form class="row form" action="{{ route('regular_contract.upload_identity_submit', ['contract_id' => $contract_id]) }}" method="POST" enctype="multipart/form-data">
@csrf
<div class="col-12 col-md-8 offset-0 offset-md-2 mb30">
<h3 class="alert-success text-center">本人確認書類をアップロードしてください。</h3>
</div>
<div class="col-12 col-md-6 offset-1 offset-md-3 mb30">
<p>
本人確認書類のアップロードが必要な契約更新です。<br>
証明書類のアップロードをお願いします。<br><br>
また卒業などで料金区分が変わる方はコールセンターまでお問い合わせ下さい。<br><br>
So-Manager コールセンター<br>
TEL:03-5856-4720毎日12時22時
</p>
</div>
<div class="col-12 col-md-6 offset-1 offset-md-3 mb30">
おもて<span style="color: red;">*</span>
<input type="file" class="mb10" id="user_idcard" name="user_idcard" accept="image/*" /><br>
ウ ラ<span style="color: transparent;">*</span>
<input type="file" class="mb10" id="user_idcard2" name="user_idcard2" accept="image/*" />
</div>
<div class="col-12 col-md-4 offset-0 offset-md-2 mt10">
<a href="{{ route('regular_contract.confirm_category', ['contract_id' => $contract_id]) }}" class="btn btn-lg btn-block btn-outline-success">戻る</a>
</div>
<div class="col-12 col-md-4 mt10">
<input type="submit" class="btn btn-lg btn-block btn-success" value="アップロードする" />
</div>
</form>
</section>
</main>
@endsection