@extends('layout.dashboard') @section('content')
{{ Lang::get('cachet.setup') }}
Service Details
{{ Form::open(['name' => 'SetupForm', 'class' => 'form-vertical', 'role' => 'form']) }}
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
Administrator 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