@extends('layouts.app') @section('title', 'Register') @section('content')

Register

Registration enables you to track your progress, and provides you with certificates of completion. Please fill out the form below to complete the registration process.

* indicates required field


{{ csrf_field() }}
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('middle_name')) {{ $errors->first('middle_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('agency')) {{ $errors->first('agency') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('phone_ext')) {{ $errors->first('phone_ext') }} @endif
@if ($errors->has('fax')) {{ $errors->first('fax') }} @endif

@if ($errors->has('password')) {{ $errors->first('password') }} @endif

Password must include the following requirements:

  • Be at least twelve characters long
  • Contain at least one uppercase letter (A-Z)
  • Contain at least one lowercase letter (a-z)
  • Contain at least one number (0-9)
  • Contain at least one special character (e.g. @,#,$,% )
@endsection