37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
@extends('layouts.app')
|
|
@section('title', '編集')
|
|
|
|
@section('content')
|
|
<div class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1 class="m-0 text-dark">編集</h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<ol class="breadcrumb float-sm-right text-sm">
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}">ホーム</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ route('payments') }}">決済情報マスタ</a></li>
|
|
<li class="breadcrumb-item active">編集</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="content">
|
|
<div class="container-fluid">
|
|
{{-- 編集フォーム --}}
|
|
<form id="form_edit" action="{{ route('payments_edit', ['id' => $payment->payment_id]) }}" method="POST">
|
|
@csrf
|
|
@include('admin.payments._form', ['isEdit' => true])
|
|
</form>
|
|
|
|
<form id="form_delete" action="{{ route('payments_delete') }}" method="POST" style="display:none;">
|
|
@csrf
|
|
<input type="hidden" name="pk[]" value="{{ $payment->payment_id }}">
|
|
</form>
|
|
</div>
|
|
</section>
|
|
@endsection
|