@extends('layouts.auth') @section('content')

{{trans('auth.create_account')}}


{!! Form::open(array('url' => url('invite/'.$inviteUser->code), 'method' => 'post')) !!}
{!! Form::label(trans('auth.first_name')) !!} : {{ $errors->first('first_name', ':message') }} {!! Form::text('first_name', null, array('class' => 'form-control', 'required'=>'required')) !!}
{!! Form::label(trans('auth.last_name')) !!} : {{ $errors->first('last_name', ':message') }} {!! Form::text('last_name', null, array('class' => 'form-control', 'required'=>'required')) !!}
{!! Form::label(trans('auth.email')) !!} : {!! $inviteUser->email !!}
{!! Form::label(trans('auth.password')) !!} : {{ $errors->first('password', ':message') }} {!! Form::password('password', array('class' => 'form-control', 'required'=>'required')) !!}
{!! Form::label(trans('auth.password_confirmation')) !!} : {{ $errors->first('password_confirmation', ':message') }} {!! Form::password('password_confirmation', array('class' => 'form-control', 'required'=>'required')) !!}
{!! Form::label(trans('staff.phone_number')) !!} : {{ $errors->first('phone_number', ':message') }} {!! Form::text('phone_number', null, array('class' => 'form-control', 'required'=>'required')) !!}
{!! Form::close() !!}
{{trans('auth.login')}}?
@stop