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

Add Doctor

@if ($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif
@if ($errors->has('doctor_type'))
{{ $errors->first('doctor_type') }}
@endif
@if ($errors->has('doctor_name'))
{{ $errors->first('doctor_name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('speciality'))
{{ $errors->first('speciality') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('photo_id'))
{{ $errors->first('photo_id') }}
@endif

@if ($errors->has('registration_proof'))
{{ $errors->first('registration_proof') }}
@endif

@if ($errors->has('clinic_logo'))
{{ $errors->first('clinic_logo') }}
@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
@stop @section('script') @stop