From 6cb0f11b5de4b605ea60c4858b9cc4287dcd1929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Tue, 13 Feb 2024 18:57:10 +0100 Subject: [PATCH] Add RFF form to billing portal v3 --- .../views/billing-portal/v3/rff.blade.php | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 resources/views/billing-portal/v3/rff.blade.php diff --git a/resources/views/billing-portal/v3/rff.blade.php b/resources/views/billing-portal/v3/rff.blade.php new file mode 100644 index 0000000000..eb4260cfbc --- /dev/null +++ b/resources/views/billing-portal/v3/rff.blade.php @@ -0,0 +1,42 @@ +
+ @if($errors->any()) +
+
    + @foreach($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ @csrf + + @if(strlen(auth()->guard('contact')->user()->first_name) === 0) +
+ + +
+ @endif + + @if(strlen(auth()->guard('contact')->user()->last_name) === 0) + + @endif + + @if(strlen(auth()->guard('contact')->user()->email) === 0) + + @endif + + +
+
\ No newline at end of file