mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-08-11 15:34:21 -04:00
18 lines
462 B
PHP
18 lines
462 B
PHP
@extends('portal.ninja2020.layout.clean', ['custom_body_class' => 'bg-gray-50'])
|
|
@section('meta_title', ctrans('texts.sign_up_with_wepay'))
|
|
|
|
@section('body')
|
|
<div>
|
|
<div class="flex flex-col justify-center items-center mt-10">
|
|
<img src="{{ asset('images/wepay.svg') }}" alt="We Pay">
|
|
</div>
|
|
|
|
@livewire('wepay-signup', ['user_id' => $user_id, 'company' => $user_company])
|
|
</div>
|
|
@endsection
|
|
|
|
@push('footer')
|
|
<script>
|
|
</script>
|
|
@endpush
|