All checks were successful
Deploy preview (main_higashide) / deploy (push) Successful in 11s
35 lines
1.5 KiB
PHP
35 lines
1.5 KiB
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<main>
|
|
<header class="alert alert-success">
|
|
<h4 class="container">領収書の発行</h4>
|
|
</header>
|
|
@if($errors->has('contract_id'))
|
|
<div class="alert alert-danger text-center">
|
|
{{ $errors->first('contract_id') }}
|
|
</div>
|
|
@endif
|
|
<form method="POST" action="{{ url('receipt/issue/' . $contract_id) }}">
|
|
@csrf
|
|
<div class="col-12 col-md-5 offset-0 offset-md-1 mt10 mb50">
|
|
<p class="text-left font-weight-bold">領収書内容の入力</p>
|
|
<p class="text-left">領収書の宛名を入力してください。</p>
|
|
<input type="text" class="form-control" id="receipt_name" name="receipt_name" required>
|
|
<div class="mt-2">
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="keisho" id="keisho_sama" value="様" checked>
|
|
<label class="form-check-label" for="keisho_sama">様</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="keisho" id="keisho_onchu" value="御中">
|
|
<label class="form-check-label" for="keisho_onchu">御中</label>
|
|
</div>
|
|
</div>
|
|
<div class="col-6 offset-3 text-left">
|
|
<button type="submit" class="btn btn-success">発行する</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</main>
|
|
@endsection |