@extends('layouts.auth') @section('content')

{{ __('Installation Complete') }}

@if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif
@if ($activated)

{{ __('Application Successfully Activated') }}!

@else

{{ __('Application was NOT Activated') }}!

@endif @if ($createDefaultAdmin)

{{ __('You can Login with following default admin credentials') }}:

  • {{ __('Username') }}: admin@example.com
  • {{ __('Password') }}: admin12345

@endif
@endsection