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

Add Patient

@if ($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif
@if ($errors->has('fullname'))
{{ $errors->first('fullname') }}
@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('phone_code'))
{{ $errors->first('phone_code') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
@if ($errors->has('pincode'))
{{ $errors->first('pincode') }}
@endif
@if ($errors->has('conceivedate'))
{{ $errors->first('conceivedate') }}
@endif
@if ($errors->has('plan_type'))
{{ $errors->first('plan_type') }}
@endif
@if ($errors->has('user_program_type'))
{{ $errors->first('user_program_type') }}
@endif
@if ($errors->has('patient_language'))
{{ $errors->first('patient_language') }}
@endif
@stop @section('script') @stop