@extends('layouts.auth') @section('title', 'Create Account') @section('content')

Create your account

Start securing your transactions with Tenseal

@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@error('terms')
{{ $message }}
@enderror
@if ($errors->has('password') && str_contains($errors->first('password'), 'already registered'))
This email is already registered on Tenseal (e.g. Inventory). Enter your existing Tenseal password to link your escrow account. No need to confirm password.
@elseif ($errors->any())
{{ $errors->first() }}
@endif
or sign up with
Sign up with Google
@endsection