@extends('super_admins.layouts.master') @section('title') Add Therapists @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Therapist

@csrf
@if (isset($subscriptions))
@if ($errors->has('subscription')) {{ $errors->first('subscription') }} @endif
@endif @if (isset($therapist_communitys))
@if ($errors->has('therapist_community_id')) {{ $errors->first('therapist_community_id') }} @endif
@endif @if (isset($therapist_categories))
@if ($errors->has('therapist_category_ids')) {{ $errors->first('therapist_category_ids') }} @endif
@endif
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('user_name')) {{ $errors->first('user_name') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
{{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}}
{{-- @if ($errors->has('is_featured')) {{ $errors->first('is_featured') }} @endif --}}
{{-- @if ($errors->has('is_premium')) {{ $errors->first('is_premium') }} @endif --}}
@include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection