@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,['class' => 'form-control']) !!}
    {!! Form::label('Last Name',Lang::get('lang.last_name')) !!} {{-- --}} {{-- --}} {!! Form::text('Lastname',null,['class' => 'form-control']) !!}
    {!! Form::label('email',Lang::get('lang.email')) !!} {{-- --}} {{-- --}} {!! Form::text('email',null,['class' => 'form-control']) !!}

    Login Information

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

    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