@extends(($fromSetup ?? false) ? 'layouts.setup' : 'layouts.app') @php $isEdit = isset($plan) && $plan !== null; @endphp @section('title', $isEdit ? 'プラン編集' : 'プラン追加') @section('page-title', $product->name . ' — ' . ($isEdit ? 'プラン編集' : 'プラン追加')) @section(($fromSetup ?? false) ? 'setup_body' : 'content')
プラン一覧へ戻る
{{ $isEdit ? 'プランを編集' : 'プランを追加' }}
@csrf @if($isEdit) @method('PUT') @endif @if($fromSetup ?? false)@endif @include('product.partials._plan_form_fields', [ 'isEdit' => $isEdit, 'plan' => $plan ?? null, 'grantOptionGroups' => $grantOptionGroups, 'scenarioOptions' => $scenarioOptions, 'paymentGatewayAccounts' => $paymentGatewayAccounts, 'selectedGrantTarget' => $selectedGrantTarget ?? '', 'selectedScenarioId' => $selectedScenarioId ?? '', ])
キャンセル
@if(!$isEdit) @push('scripts') @endpush @else @push('scripts') @endpush @endif @endsection