@extends('master/index') @section('content') @if (Session::has('error'))
{{ trans(Session::get('reason')) }}
@endif

{{ t('Registration') }}

 
 
 

{!! Form::open() !!}
{!! Form::text('username',null,['class'=>'form-control input-lg','id'=>'username','placeholder'=>t('Select Username'),'required']) !!}
{!! Form::text('email',null,['class'=>'form-control input-lg','type'=>'email','id'=>'email','placeholder'=>t('Your Email'),'required']) !!}
{!! Form::text('fullname',null,['class'=>'form-control input-lg','id'=>'fullname','placeholder'=>t('Your Full Name'),'required'=>'required']) !!}
{!! Form::select('gender', ['male' => t('Male'), 'female' => t('Female')], 'male',['class'=>'form-control input-lg','required'=>'required']) !!}
{!! Form::password('password',['class'=>'form-control input-lg','placeholder'=>t('Enter Password'),'autocomplete'=>'off','required'=>'required']) !!}
{!! Form::password('password_confirmation',['class'=>'form-control input-lg','placeholder'=>'Confirm Password','autocomplete'=>'off','required'=>'required']) !!}
{!! Recaptcha::render() !!}

{{ t('By clicking on the "create account" you accept the following') }} {{ t('terms and conditions') }} {{ t('and our') }} {{ t('privacy policy') }}

{!! Form::submit(t('Create New Account'),['class'=>'btn btn-success btn-lg']) !!}
{!! Form::close() !!} @endsection