2025-09-26 17:41:28 -05:00
|
|
|
<x-layouts.guest>
|
|
|
|
|
<x-ui.authentication-card>
|
2024-08-01 13:53:10 -05:00
|
|
|
<x-slot name="logo">
|
2024-08-23 21:59:42 -05:00
|
|
|
<div class="w-24 mb-10">
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.logo />
|
2024-08-23 21:59:42 -05:00
|
|
|
</div>
|
2024-08-01 13:53:10 -05:00
|
|
|
</x-slot>
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.errors class="mb-4" />
|
2024-08-01 13:53:10 -05:00
|
|
|
|
|
|
|
|
<form method="POST" action="{{ route('register') }}">
|
|
|
|
|
@csrf
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.input id="name" label="{{ __('Name') }}" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autofocus autocomplete="name" />
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.input id="email" label="{{ __('Email') }}" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autocomplete="username" />
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.input id="password" label="{{ __('Password') }}" class="block mt-1 w-full" type="password" name="password" required autocomplete="new-password" />
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mt-4">
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.input id="password_confirmation" label="{{ __('Confirm Password') }}" class="block mt-1 w-full" type="password" name="password_confirmation" required autocomplete="new-password" />
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
|
|
|
|
|
2025-04-09 19:25:15 -05:00
|
|
|
@if (! config('investbrain.self_hosted'))
|
2024-08-01 13:53:10 -05:00
|
|
|
<div class="mt-4">
|
|
|
|
|
<label>
|
|
|
|
|
<div class="flex items-center">
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.checkbox name="terms" id="terms" required />
|
2024-08-01 13:53:10 -05:00
|
|
|
|
2024-08-23 20:57:31 -05:00
|
|
|
<div class="ms-2 text-sm">
|
2024-08-01 13:53:10 -05:00
|
|
|
{!! __('I agree to the :terms_of_service and :privacy_policy', [
|
2024-10-31 16:39:28 -05:00
|
|
|
'terms_of_service' => '<a target="_blank" href="https://investbra.in/terms" class="underline">'.__('Terms of Service').'</a>',
|
|
|
|
|
'privacy_policy' => '<a target="_blank" href="https://investbra.in/privacy" class="underline">'.__('Privacy Policy').'</a>',
|
2024-08-01 13:53:10 -05:00
|
|
|
]) !!}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
<div class="flex items-center justify-end mt-4">
|
2024-08-23 20:57:31 -05:00
|
|
|
<a class=" text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800" href="{{ route('login') }}">
|
2024-08-01 13:53:10 -05:00
|
|
|
{{ __('Already registered?') }}
|
|
|
|
|
</a>
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.button type="submit" class="btn-primary ms-4">
|
2024-08-01 13:53:10 -05:00
|
|
|
{{ __('Register') }}
|
2025-09-26 17:41:28 -05:00
|
|
|
</x-ui.button>
|
2024-08-01 13:53:10 -05:00
|
|
|
</div>
|
|
|
|
|
</form>
|
2025-09-26 17:41:28 -05:00
|
|
|
</x-ui.authentication-card>
|
|
|
|
|
</x-layouts.guest>
|