@extends('theme::layouts.app') @section('content')

{{__("Welcome Aboard!")}}

{{__("Thanks for subscribing and welcome aboard.")}} @if(Request::get('complete')){{ 'Please finish completing your profile information below.' }} @endif

@if(Request::get('complete'))
@csrf

{{__("Profile")}}

{{__("Finish filling out your profile information.")}}

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if(setting('auth.username_in_registration') && setting('auth.username_in_registration') == 'yes')
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@else
{{__("Go to my Dashboard")}}
@endif
@endsection