{{ Form::label('email', 'Email:') }} {{ Form::email('email', null, ['class' => 'form-control']) }}

{{ $errors->first('email') }}

@component('admin.components.info') If empty all emails will be allowed to register using the link. @endcomponent
{{ Form::label('usage_limit', 'Usage limit:') }} {{ Form::number('usage_limit', null, ['class' => 'form-control']) }}

{{ $errors->first('usage_limit') }}

@component('admin.components.info') If empty there will be no limit on the number of times the link can be used. If an email is provided the limit will be automatically set to 1. @endcomponent
{{ Form::label('expires_at', 'Expiration Date:') }}

{{ $errors->first('expires_at') }}

@component('admin.components.info') If empty the link will not expire. @endcomponent
{{ Form::label('email_link', 'Email Invite Link:') }} @component('admin.components.info') If checked and an email is provided, the invite will be sent via email. @endcomponent
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }} Cancel