@extends('auth.signup-layout') @section('title', 'Signup') @section('header', 'Contact Details') @section('content')
  1. Personal Info
  2. Organization Info
  3. Contact Details
@csrf
@if ($errors->has('contact_first_name')) {{ $errors->first('contact_first_name') }} @else Please provide a valid first name. @endif
@if ($errors->has('contact_last_name')) {{ $errors->first('contact_last_name') }} @else Please provide a valid last name. @endif
@if ($errors->has('contact_phone_no')) {{ $errors->first('contact_phone_no') }} @else Please provide a valid phone number. @endif
@if ($errors->has('contact_email')) {{ $errors->first('contact_email') }} @else Please provide a valid email address. @endif
Please accept terms and conditions.
@endsection