@extends('layout.dashboard') @section('content')
{{ trans('setup.title') }}
{{ trans('setup.service_details') }}
{{ Form::open(['name' => 'SetupForm', 'class' => 'form-vertical', 'role' => 'form']) }}
{{ trans('setup.status_page_setup') }}
@if($errors->has('settings.app_name')) {{ $errors->first('settings.app_name') }} @endif
@if($errors->has('settings.app_domain')) {{ $errors->first('settings.app_domain') }} @endif
{{ trans("setup.admin_account") }}
@if($errors->has('user.username')) {{ $errors->first('user.username') }} @endif
@if($errors->has('user.email')) {{ $errors->first('user.email') }} @endif
@if($errors->has('user.password')) {{ $errors->first('user.password') }} @endif

{{ Form::close() }}
@stop