@extends('Admin/layout/master') @section('title', 'Patient Add') @section('content')
Patient Add
{!! Form::open(['route' => 'patient.store', 'method' => 'post', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('first_name', 'First Name', ['class' => 'form-label']) !!} {!! Form::text('first_name', null, ['class' => 'form-control', 'placeholder' => 'Enter First Name']) !!} {!! $errors->first('first_name', ':message') !!}
{!! Form::label('last_name', 'Last Name', ['class' => 'form-label']) !!} {!! Form::text('last_name', null, ['class' => 'form-control', 'placeholder' => 'Enter Last Name']) !!} {!! $errors->first('last_name', ':message') !!}
{!! Form::label('email', 'Email', ['class' => 'form-label']) !!} {!! Form::email('email', null, ['class' => 'form-control', 'placeholder' => 'Enter Email']) !!} {!! $errors->first('email', ':message') !!}
{!! Form::label('date', 'Date Of Birth', ['class' => 'form-label']) !!} {!! Form::date('date_of_birth', null, ['class' => 'form-control', 'placeholder' => 'Enter Date of Birth']) !!} {!! $errors->first('date_of_birth', ':message') !!}
{!! Form::label('address', 'Address', ['class' => 'form-label']) !!} {!! Form::text('address', null, ['class' => 'form-control', 'placeholder' => 'Enter Address']) !!} {!! $errors->first('address', ':message') !!}
{!! Form::label('mobile', 'Phone', ['class' => 'form-label']) !!} {!! Form::text('phone', null, ['class' => 'form-control', 'placeholder' => 'Enter Phone No']) !!} {!! $errors->first('phone', ':message') !!}
{!! Form::label('gender', 'Gender', ['class' => 'form-label']) !!} {!! Form::select('gender', ['male' => 'Male', 'female' => 'Female'], null, ['class' => 'form-control ']) !!}
{!! Form::label('walk', 'Patient Type', ['class' => 'form-label']) !!}
{!! Form::radio('patient_type', 'walk', true, ['id' => 'walk', 'class' => 'form-check-input']) !!} {!! Form::label('walk', 'Walk In', ['class' => 'form-check-label']) !!}
{!! Form::radio('patient_type', 'physian', false, ['id' => 'physian', 'class' => 'form-check-input']) !!} {!! Form::label('physian', 'Physician Refrence', ['class' => 'form-check-label']) !!}

{!! Form::label('id_card', 'ID Card Upload', ['class' => 'form-label']) !!} {!! Form::file('id_card', ['class' => 'form-control', 'placeholder' => 'Enter Last Name']) !!} {!! $errors->first('id_card', ':message') !!}
{!! Form::label('insurence_company', 'Insurence Company', ['class' => 'form-label']) !!} {!! Form::select('insurence_company', $insurence_companies, null, [ 'class' => 'form-control', 'placeholder' => 'Select Diagnonsis', ]) !!}
{!! Form::label('physician', 'Referening Physician', ['class' => 'form-label ']) !!}
{!! Form::radio('physician_type', 'MD', false, ['id' => 'physician-type', 'class' => 'form-check-input']) !!} {!! Form::label('physician-type', 'MD', ['class' => 'form-check-label']) !!}
{!! Form::radio('physician_type', 'DPM', false, ['id' => 'physician-type', 'class' => 'form-check-input']) !!} {!! Form::label('physician-type', 'DPM', ['class' => 'form-check-label']) !!}
{!! Form::select('physician_id', [''=>'Select Physician'], null, [ 'class' => 'form-control', 'id' => 'physicians', ]) !!} {!! $errors->first('physician_id', ':message') !!}
{!! Form::label('qtv', 'QTY', ['class' => 'form-label']) !!} {!! Form::text('qty_id', null, ['class' => 'form-control quantity', 'placeholder' => 'Quantity', 'readonly']) !!}
{!! Form::label('diagnonsis', 'Diagnonsis', ['class' => 'form-label']) !!} {!! Form::select('diagnonsis_id[]', $diagnonsises, null, [ 'class' => 'form-control js-example-basic-multiple', 'multiple', 'data-placeholder' => 'Select Diagnonsis', ]) !!} {!! $errors->first('diagnonsis_id', ':message') !!}
{!! Form::label('hcpcs', 'HCPCS', ['class' => 'form-label']) !!} {!! Form::select('hcpcs_id[]', $hcpcses, null, [ 'class' => 'form-control js-example-basic-multiple selectedOption', 'data-placeholder' => 'Select HCPCS', 'multiple', ]) !!} {!! $errors->first('hcpcs_id', ':message') !!}
{!! Form::label('signature', 'Signature', ['class' => 'form-label']) !!} {!! Form::text('signature', null, ['class' => 'form-control signature', 'placeholder' => 'Enter Signature']) !!}
{!! Form::submit('Add', ['class' => 'btn btn-primary btn-sm my-2 add']) !!} Back
{!! Form::close() !!}
@endsection @section('scripts') @endsection