@extends('layouts.install') @section('header', trans('install.steps.database')) @section('content')
{{ 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') }}
@endsection