16 lines
709 B
PHP
Raw Normal View History

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