@extends('admin.layouts.app') @section('page_tab_title' ,"Practitioners") @section('content')

@if(empty($practitioner->id)) Create New practitioner @else Edit practitioner @endif


id)) action="{{ route('practitioner.store') }}" @else action="{{ route('practitioner.update', $practitioner->id) }}" @endif > @csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
email)) name="email" @else disabled @endif required class="form-control" value="{{$practitioner->email ?? old('email') }}" > @if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
password)) required @endif> @if ($errors->has('password')) {{ $errors->first('password') }} @endif
password)) required @endif> @if ($errors->has('password')) {{ $errors->first('password') }} @endif
Choose File
No file chosen...
@if(isset($personal->profile_picture))
@endif
gender) == 'Male') checked @endif @if(!isset($personal->gender) || $personal->gender =="") checked @endif> Male gender) == 'Female') checked @endif> Female gender) == 'Other') checked @endif> Other
@if ($errors->has('my_bio')) {{ $errors->first('my_bio') }} @endif
@if ($errors->has('association_id')) {{ $errors->first('association_id') }} @endif
@if ($errors->has('association_number')) {{ $errors->first('association_number') }} @endif
@if ($errors->has('qualifications')) {{ $errors->first('qualifications') }} @endif
@if ($errors->has('profession')) {{ $errors->first('profession') }} @endif
@if ($errors->has('language_id')) {{ $errors->first('language_id') }} @endif
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('service_id')) {{ $errors->first('service_id') }} @endif
@if ($errors->has('facility_id')) {{ $errors->first('facility_id') }} @endif
Cancel
{{-- --}}