@extends('layouts.app') @section('title','Contacts') @section('pages')
@csrf
Contact Information

@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('organization')) {{ $errors->first('organization') }} @endif
@if ($errors->has('guardian_name')) {{ $errors->first('guardian_name') }} @endif
@if ($errors->has('phone_no')) {{ $errors->first('phone_no') }} @endif
@if ($errors->has('whatsapp_no')) {{ $errors->first('whatsapp_no') }} @endif
@if ($errors->has('alternative_no')) {{ $errors->first('alternative_no') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif

Additional Details

@if ($errors->has('anniversary_date')) {{ $errors->first('anniversary_date') }} @endif
@if ($errors->has('website_url')) {{ $errors->first('website_url') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('postal_code')) {{ $errors->first('postal_code') }} @endif
@if ($errors->has('pin')) {{ $errors->first('pin') }} @endif
@if ($errors->has('any_known_allergies')) {{ $errors->first('any_known_allergies') }} @endif
@endsection @section('js') @endsection