@extends('layouts.guest') @section('title', 'Register') @section('content')

Sign Up for Free

@if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif @if (session('status'))
{{ session('status') }}
@endif
@csrf
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@error('agree_terms')

{{ $message }}

@enderror

By signing up, you agree to the Terms and Conditions and Privacy Policy, including Cookie Use.

Already have an account?
Login here
@endsection