@extends('layout.master') @section('css') @stop @section('content')
@csrf

Edit Doctor

@if ($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif
@if ($errors->has('doctor_name'))
{{ $errors->first('doctor_name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('unique'))
{{ $errors->first('unique') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@php $final = ['Neurology','Psychiatry','Cardiology','In-Vitro Fertilisation','Nephrology']; $speciality = explode(',', $doctor->speciality); $other_speciality = array_diff($speciality,$final); @endphp
@if ($errors->has('speciality'))
{{ $errors->first('speciality') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('trainer_type'))
{{ $errors->first('trainer_type') }}
@endif
@if ($errors->has('registration_proof'))
{{ $errors->first('registration_proof') }}
@endif
@if ($errors->has('clinic_name'))
{{ $errors->first('clinic_name') }}
@endif
@if ($errors->has('clinic_address'))
{{ $errors->first('clinic_address') }}
@endif
@if ($errors->has('pincode'))
{{ $errors->first('pincode') }}
@endif
@if ($errors->has('pin_price'))
{{ $errors->first('pin_price') }}
@endif
@if ($doctor->ovum_pickup_video) @endif
@if ($doctor->embryo_transfer_video) @endif
@if ($doctor->ivf_information_video) @endif
@stop @section('script') @stop