@extends('themes.default1.layouts.login')
@section('body')
{!! Lang::get('lang.registration') !!}
@if(Session::has('status'))
{!! Lang::get('lang.success') !!}
{{Session::get('status')}}
@endif
@if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@endif
{!! Form::open(['action'=>'Auth\AuthController@postRegister', 'method'=>'post']) !!}
{!! Form::text('full_name',null,['placeholder'=>Lang::get('lang.full_name'),'class' => 'form-control']) !!}
{!! $errors->first('full_name', ':message') !!}
{!! Form::text('email',null,['placeholder'=>Lang::get('lang.email'),'class' => 'form-control']) !!}
{!! $errors->first('email', ':message') !!}
{!! Form::password('password',['placeholder'=>Lang::get('lang.password'),'class' => 'form-control']) !!}
{!! $errors->first('password', ':message') !!}
{!! Form::password('password_confirmation',['placeholder'=>Lang::get('lang.retype_password'),'class' => 'form-control']) !!}
{!! $errors->first('password_confirmation', ':message') !!}
{!! Lang::get('lang.i_already_have_a_membership') !!}
{!! Form::close()!!}
@stop