mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
25 lines
552 B
PHP
25 lines
552 B
PHP
@extends('setup.master')
|
|
|
|
@section('content')
|
|
<h1>{{ trans('setup.wizard.finish.title') }}
|
|
@include('setup.wizard.language')
|
|
</h1>
|
|
|
|
<p>{{ trans('setup.wizard.finish.text') }}</p>
|
|
|
|
<table class="form-table install-success">
|
|
<tr>
|
|
<th>{{ trans('auth.email') }}</th>
|
|
<td>{{ $email }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ trans('auth.password') }}</th>
|
|
<td><p><em>{{ $password }}</em></p></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p class="step">
|
|
<a href="../" class="button button-large">{{ trans('general.index') }}</a>
|
|
</p>
|
|
@endsection
|