@extends('layouts.participan') @section('content')
Payment Upload
@csrf
@if($errors->has('paytype'))

{{ $errors->first('paytype') }}

@endif

Wajib Dipilih

@php $type = Auth::user()->price_id; switch ($type) { case "1": $def = "Pembayaran Registrasi Fullbord Non Residental Package Rakernas AFKSI 2024"; break; case "2": $def = "Pembayaran Registrasi Fullbord Twin Sahring Residental Package Rakernas AFKSI 2024"; break; case "3": $def = "Pembayaran Registrasi Fullbord Single Residental Package Rakernas AFKSI 2024"; break; case "4": $def = "Pembayaran Registrasi Premium Faculty Package Rakernas AFKSI 2024"; break; default: $def = "Pembayaran Registrasi Rakernas AFKSI 2024"; } @endphp @if($errors->has('name'))

{{ $errors->first('name') }}

@endif

untuk kwitansi

@php $type = Auth::user()->price_id; switch ($type) { case "1": $def = "2000000"; break; case "2": $def = "4000000"; break; case "3": $def = "5000000"; break; case "4": $def = "18500000"; break; default: $def = "0"; } @endphp @if($errors->has('byk'))

{{ $errors->first('byk') }}

@endif

@if($errors->has('photo'))

{{ $errors->first('photo') }}

@endif

{{ trans('cruds.hotel.fields.photo_helper') }}

@endsection @section('scripts') @stop