@extends('home') @section('content') @include('layouts.partials.messages')

Add Business User

@csrf
@if ($errors->has('userName')) {{ $errors->first('userName') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('DOB')) {{ $errors->first('DOB') }} @endif
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('martialStatus')) {{ $errors->first('martialStatus') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('postCode')) {{ $errors->first('postCode') }} @endif
@if ($errors->has('phoneNo')) {{ $errors->first('phoneNo') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('profileImageUrl')) {{ $errors->first('profileImageUrl') }} @endif
@stop