mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-24 09:18:31 +00:00
13 lines
481 B
PHP
13 lines
481 B
PHP
<div class="large checkbox">
|
|
{!! Form::checkbox('terms', 'true', false, ['id' => 'terms']) !!}
|
|
<label for="terms">
|
|
I accept the
|
|
<a href="{{ config('app.terms_of_use_url') }}">Terms and Conditions</a>
|
|
@if (config('app.privacy_policy_url', null) != null)
|
|
and <a href="{{ config('app.privacy_policy_url') }}">Privacy policy</a>
|
|
@endif
|
|
</label>
|
|
@include('parts.errors', ['name' => 'terms'])
|
|
</div>
|
|
|
|
@include('parts.captcha')
|