@extends('auth.signup-layout') @section('title', 'Signup') @section('header', 'Create Your Account') @section('content')
  1. Personal Info
  2. Organization Info
  3. Contact Details
@csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @else Please provide a valid first name. @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @else Please provide a valid last name. @endif
@if ($errors->has('phone_no')) {{ $errors->first('phone_no') }} @else Please provide a valid phone number. @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @else Please provide a valid email address. @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @else Enter a valid password. @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @else Confirm password is required. @endif

Already have an account? Log in

@endsection