@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('labels.frontend.auth.register_box_title')) @section('content')
Invite someone to your team {{-- @lang('labels.frontend.auth.register_box_title')--}}
{{ html()->form('POST', route('frontend.auth.invite'))->open() }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('form-control') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() }}
{{ form_submit('Send invite') }}
{{ html()->form()->close() }}
@endsection @push('after-scripts') @if(config('access.captcha.registration')) @captchaScripts @endif @endpush