mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
13 lines
No EOL
675 B
PHP
13 lines
No EOL
675 B
PHP
<div class="form-check mb-3">
|
|
{!! Form::checkbox('terms', 'true', false, ['class' => 'form-check-input', 'id' => 'terms']) !!}
|
|
<label class="form-check-label" for="terms">I accept the Terms and Conditions: </a></label>
|
|
<p>Read the <a href="{{ config('app.terms_of_use_url') }}">Terms and Conditions</a></p>
|
|
</div>
|
|
|
|
<div class="form-check mb-3">
|
|
{!! Form::checkbox('privacy', 'true', false, ['class' => 'form-check-input', 'id' => 'privacy']) !!}
|
|
<label class="form-check-label" for="privacy">I accept the Privacy policy: </a></label>
|
|
<p>Read the <a href="{{ config('app.privacy_policy_url') }}">Privacy policy</a></p>
|
|
</div>
|
|
|
|
@include('parts.captcha') |