phpvms/modules/Installer/Resources/views/index-start.blade.php

12 lines
342 B
PHP
Raw Normal View History

@extends('installer::app')
@section('content')
<h2>phpvms installer</h2>
<p>Press continue to start</p>
{!! Form::open(['route' => 'installer.step1', 'method' => 'post']) !!}
<p style="text-align: right">
{!! Form::submit('Start >>', ['class' => 'btn btn-success']) !!}
</p>
{!! Form::close() !!}
@endsection