@extends('layouts.guest') @section('title', 'Install '.config('app.name')) @section('content')
{!! Form::open(['route' => 'app.install']) !!}
{!! appLogoImage(['style' => 'width:150px']) !!}

{{ config('app.name') }}

{{ __('app_install.agency_info_text') }}

{!! FormField::text('agency_name', ['required' => true, 'label' => __('agency.name')]) !!} {!! FormField::text('agency_website', ['required' => true, 'label' => __('agency.website')]) !!}

{{ __('app_install.admin_info_text') }}

{!! FormField::text('name', ['required' => true, 'label' => __('app_install.admin_name')]) !!}
{!! FormField::email('email', ['required' => true, 'label' => __('app_install.admin_email')]) !!}
{!! FormField::password('password', ['required' => true, 'label' => __('auth.password')]) !!}
{!! FormField::password('password_confirmation', ['required' => true, 'label' => __('auth.password_confirmation')]) !!}
{!! Form::submit(__('app_install.button'), ['class' => 'btn btn-success btn-block btn-lg']) !!} {!! Form::close() !!}
@endsection