@extends('website.layouts.app') @section('content')
@if ($setting->available_slots <= $setting->booked_slots) Registration Closed - START

Slots are full.

Registration Complete.

Registration Closed - END @endif

CME Registration Form

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('q_id')) {{ $errors->first('q_id') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('license_no')) {{ $errors->first('license_no') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif

Note :

* Indicates mandatory fields

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Terms & Conditions

{!! $setting->terms_conditions !!}
@endsection @section('scripts') @endsection