@extends('themes.default1.installer.layout.installer') @section('licence') done @stop @section('environment') done @stop @section('database') done @stop @section('locale') active @stop @section('content') {!! Form::open(['url'=>route('postaccount')]) !!} @if($errors->first('firstname')||$errors->first('Lastname')||$errors->first('email')||$errors->first('username')||$errors->first('password')||$errors->first('confirmpassword'))
@if($errors->first('firstname'))
  • {!! $errors->first('firstname', ':message') !!}
  • @endif @if($errors->first('Lastname'))
  • {!! $errors->first('Lastname', ':message') !!}
  • @endif @if($errors->first('email'))
  • {!! $errors->first('email', ':message') !!}
  • @endif @if($errors->first('username'))
  • {!! $errors->first('username', ':message') !!}
  • @endif @if($errors->first('password'))
  • {!! $errors->first('password', ':message') !!}
  • @endif @if($errors->first('confirmpassword'))
  • {!! $errors->first('confirmpassword', ':message') !!}
  • @endif
    @endif

    Personal Information

    {!! Form::label('firstname',Lang::get('lang.first_name')) !!} {!! Form::text('firstname',null,['style' =>'margin-left:250px']) !!}
    {!! Form::label('Last Name',Lang::get('lang.last_name')) !!} {!! Form::text('Lastname',null,['style' =>'margin-left:250px']) !!}
    {!! Form::label('email',Lang::get('lang.email')) !!} {!! Form::text('email',null,['style' =>'margin-left:250px']) !!}

    Login Information

    {!! Form::label('user_name',Lang::get('lang.user_name')) !!} {!! Form::text('username',null,['style' =>'margin-left:200px']) !!}
    {!! Form::label('Password',Lang::get('lang.password')) !!}
    {!! Form::password('password',null,[]) !!}
    {!! Form::label('confirmpassword',Lang::get('lang.confirm_password')) !!}
    {!! Form::password('confirmpassword',null,[]) !!}

    Local Information

    {!! Form::label('language',Lang::get('lang.language')) !!}
    {!! Form::label('time_zone',Lang::get('lang.time_zone')) !!}
    {!! Form::label('date',Lang::get('lang.date_time')) !!}

    Previous

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