@extends('auth.signup-layout') @section('title', 'Signup') @section('header', 'Organization Information') @section('content')
  1. Personal Info
  2. Organization Info
  3. Contact Details
@csrf
@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @else Please enter the company name. @endif
@if ($errors->has('address_1')) {{ $errors->first('address_1') }} @else Please enter address. @endif
@if ($errors->has('address_2')) {{ $errors->first('address_2') }} @endif
@if ($errors->has('registration_no')) {{ $errors->first('registration_no') }} @else Enter a valid registratrion number @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @else Please enter city. @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @else Please select a country. @endif
@if ($errors->has('postal')) Please enter postal code. @else @endif
@if ($errors->has('industry')) {{ $errors->first('industry') }} @else Please select a industry. @endif
@endsection