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

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


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