@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')
Doctor
@if ($message = Session::has('success'))
{{ $message }}
@endif
{{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('department'))
{{ $errors->first('department') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('hospital_location'))
{{ $errors->first('hospital_location') }}
@endif
@if ($errors->has('years_experience'))
{{ $errors->first('years_experience') }}
@endif
@if ($errors->has('languages_spoken'))
{{ $errors->first('languages_spoken') }}
@endif
@if ($errors->has('education'))
{{ $errors->first('education') }}
@endif
@if ($errors->has('overview'))
{{ $errors->first('overview') }}
@endif
@if ($errors->has('meta_title'))
{{ $errors->first('meta_title') }}
@endif
@if ($errors->has('meta_description'))
{{ $errors->first('meta_description') }}
@endif
@php $awards_recognitions=awards(); @endphp
@foreach($awards_recognitions as $key => $label)
@endforeach
@endsection @section('script') @include('admin.dropzone-single-create')