@extends('job.layout.web') @section('title', 'Company Registration') @section('content')
@csrf

Company Profile

@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if($errors->has('username'))
{{ $errors->first('username') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if($errors->has('company_info'))
{{ $errors->first('company_info') }}
@endif

Contact Information

@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('website'))
{{ $errors->first('website') }}
@endif
@if($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if($errors->has('state'))
{{ $errors->first('state') }}
@endif
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif

More Information

@if($errors->has('founded_in'))
{{ $errors->first('founded_in') }}
@endif
@if($errors->has('business_type'))
{{ $errors->first('business_type') }}
@endif
@if($errors->has('employees'))
{{ $errors->first('employees') }}
@endif
@endsection