28 lines
996 B
PHP
28 lines
996 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Konto erstellen')
|
|
|
|
@section('content')
|
|
{{-- <div class="min-h-[86vh] grid place-items-center px-4--}}
|
|
{{-- bg-[radial-gradient(1200px_600px_at_10%_-10%,rgba(59,130,246,.08),transparent),--}}
|
|
{{-- radial-gradient(900px_500px_at_90%_0%,rgba(99,102,241,.06),transparent)]">--}}
|
|
{{-- <div class="nx-card w-full max-w-[560px]">--}}
|
|
{{-- <div class="flex items-center justify-between mb-5">--}}
|
|
{{-- <span class="nx-chip">Neu hier?</span>--}}
|
|
{{-- <i class="ph ph-user-plus text-white/60"></i>--}}
|
|
{{-- </div>--}}
|
|
|
|
{{-- <p class="nx-subtle mb-7">--}}
|
|
{{-- Erstelle ein Konto, um mit MailWolt zu starten.--}}
|
|
{{-- </p>--}}
|
|
|
|
{{-- <livewire:auth.signup-form />--}}
|
|
{{-- </div>--}}
|
|
{{-- </div>--}}
|
|
|
|
<div class="flex items-center justify-center #p-6 w-full">
|
|
<livewire:auth.signup-form />
|
|
</div>
|
|
|
|
@endsection
|