@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

This file can be modified inside of your resources/views/{{ theme_folder('/welcome.blade.php') }} file ✌️

@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