2019-11-16 10:21:14 +03:00

16 lines
709 B
PHP

@extends('layouts.install')
@section('header', trans('install.steps.database'))
@section('content')
<div class="row">
{{ Form::textGroup('hostname', trans('install.database.hostname'), 'server', ['required' => 'required'], old('hostname', 'localhost'), 'col-md-12') }}
{{ Form::textGroup('username', trans('install.database.username'), 'user', ['required' => 'required'], old('username'), 'col-md-12') }}
{{ Form::passwordGroup('password', trans('install.database.password'), 'key', [], 'col-md-12') }}
{{ Form::textGroup('database', trans('install.database.name'), 'database', ['required' => 'required'], old('database'), 'col-md-12 mb--2') }}
</div>
@endsection