flexisip-account-manager/flexiapi/resources/views/parts/terms.blade.php
2023-08-08 15:01:24 +00:00

13 lines
463 B
PHP

<div class="large checkbox">
<input id="terms" name="terms" type="checkbox">
<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')