@extends('layouts.auth') @section('title', 'Register | ' . Options::get('title') ) @section('content')

Register now

{{ Form::open(['url' => 'register', 'method' => 'post'])}}
{{ Form::text('first_name', null, ['placeholder' => 'First name', 'class' => 'form-control']) }} @if( $errors->any() ) {{ $errors->first('first_name') }} @endif
{{ Form::text('last_name', null, ['placeholder' => 'Last name', 'class' => 'form-control']) }} @if( $errors->any() ) {{ $errors->first('last_name') }} @endif
{{ Form::email('email', null, ['placeholder' => 'Email Address', 'class' => 'form-control']) }} @if( $errors->any() ) {{ $errors->first('email') }} @endif
{{ Form::password('password', ['placeholder' => 'Password', 'class' => 'form-control']) }} @if( $errors->any() ) {{ $errors->first('password') }} @endif
{{ Form::password('password_confirmation', ['placeholder' => 'Confirm Password', 'class' => 'form-control']) }} @if( $errors->any() ) {{ $errors->first('password_confirmation') }} @endif
{{ Form::submit('register', ['class' => 'btn btn-success']) }} {{ Form::close() }}
@endsection