@extends('themes.default1.installer.layout.installer') @section('content')

Create Admin Account

{!! Form::open(['url'=>route('postaccount')]) !!}

Personal Information

First Name @if($errors->has('firstname'))
{{$errors->first('firstname')}}
@endif Last Name @if($errors->has('Lastname'))
{{$errors->first('Lastname')}}
@endif Email @if($errors->has('email'))
{{$errors->first('email')}}
@endif

Login Information

User Name @if($errors->has('username'))
{{$errors->first('username')}}
@endif Password @if($errors->has('password'))
{{$errors->first('password')}}
@endif Confirm Password @if($errors->has('confirmpassword'))
{{$errors->first('confirmpassword')}}
@endif

Local Information

Language Timezone Date Date Time
{{--        Prev --}} {!! Form::token() !!} {!! Form::close() !!}

@stop