mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
17 lines
460 B
PHP
17 lines
460 B
PHP
@extends('setup.updates.master')
|
|
|
|
@section('content')
|
|
<h1>
|
|
@lang('setup.updates.welcome.title')
|
|
@include('setup.wizard.language')
|
|
</h1>
|
|
|
|
<p>{!! nl2br(trans('setup.updates.welcome.text', ['version' => config('app.version')])) !!}</p>
|
|
|
|
<form method="post" action="" novalidate="novalidate">
|
|
<p class="step">
|
|
<input type="submit" name="submit" class="button button-large" value="@lang('setup.updates.welcome.button')" />
|
|
</p>
|
|
</form>
|
|
@endsection
|