@extends('super_admins.layouts.master') @section('title') Edit Doctor @endsection @section('css') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{-- {{ $error }} --}} @endforeach @endif

Doctors

{{--
--}}
@csrf @method('PUT')
@if (isset($subscriptions))
@if ($errors->has('subscription_id')) {{ $errors->first('subscription_id') }} @endif
@endif @if (isset($clinics))
@if ($errors->has('clinic_id')) {{ $errors->first('clinic_id') }} @endif
@endif @if (isset($doctor_categories))
@if ($errors->has('doctor_category_ids')) {{ $errors->first('doctor_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('user_name')) {{ $errors->first('user_name') }} @endif
Multi Language
@foreach ($active_languages as $key => $language) @endforeach
@if ($errors->has('image')) {{ $errors->first('image') }} @endif @if ($doctor->image)
{{ $doctor->name }}
@else
-- No Image Selected
@endif
is_active) checked @endif class="custom-control-input" id="customSwitch1" aria-describedby="IsActiveError" aria-invalid="true">
{{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}}
is_featured) checked @endif class="custom-control-input" id="customSwitch2" aria-describedby="IsFeaturedError" aria-invalid="true">
{{-- @if ($errors->has('is_featured')) {{ $errors->first('is_featured') }} @endif --}}
is_premium) checked @endif class="custom-control-input" id="customSwitch3" aria-describedby="IsFeaturedError" aria-invalid="true">
{{-- @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