@extends('installer::layouts.master') @section('page', __('Environment')) @section('content')
{{csrf_field()}}

{{__('Installation Wizard')}}
{{__('We need to gather some important information...')}}

@include('installer::includes.alerts')
@if($data = $content['app'])
{{__("Setup your application details..")}}
@include('installer::includes.forms', ['content' => $data]) @endif @if($data = $content['db'])
{{__("Setup your database connection..")}}
@include('installer::includes.forms', ['content' => $data]) @endif @if($data = $content['broadcast'])
{{__("Setup your application broadcast server..")}}
@include('installer::includes.forms', ['content' => $data]) @endif @if($data = $content['mail'])
{{__("Setup your application mail server..")}}
@include('installer::includes.forms', ['content' => $data]) @endif @if($data = $content['extras'])
{{__("We need some extra information..")}}
@include('installer::includes.forms', ['content' => $data]) @endif
@endsection