@extends('adminlte::page') @section('title', 'Iassis ORL') @section('content_header')

Νέος Ασθενής

@stop @section('content')
{!! Form::open(['url' => 'patients/create']) !!}
{!! Form::label('lastname', 'Επώνυμο:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('lastname',null,['class'=>'form-control input-sm','required'=>'required']) !!}
{!! Form::label('firstname', 'Όνομα:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listname as $list)
{!! Form::label('Address', 'Διέυθυνση:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('address',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('city', 'Πόλη:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listcity as $list)
{!! Form::label('tk', 'ΤΚ:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('tk',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('amka', 'ΑΜΚΑ:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('amka',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('birthdate', 'Ημ. Γέννησης:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::date('birthdate',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('phone', 'Τηλέφωνο:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('phone',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('mobile', 'Κινητό:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('mobile',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('email', 'Email:',['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('email',null,['class'=>'form-control input-sm']) !!}
{!! Form::label('tameio', 'Ταμείο:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listtameio as $list)
{!! Form::label('origin', 'Προέλευση:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listorigin as $list)
{!! Form::label('parapompi', 'Παραπομπή:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listparapompi as $list)
{!! Form::label('gp', 'GP:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listgp as $list)
{!! Form::label('smoking', 'Smoking:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listsmoking as $list)
{!! Form::label('eth', 'Eth:',['class'=>'col-sm-2 col-form-label']) !!}
@foreach ($listeth as $list)
{!! Form::label('tameio_aeroporia', 'Ταμειο Αεροπ.:',['class'=>'col-sm-3 input-group-sm']) !!}
{!! Form::radio('tameio_aeroporia', 'ΝΑΙ') !!} ΝΑΙ   {!! Form::radio('tameio_aeroporia', 'ΟΧΙ') !!} ΟΧΙ
{!! Form::label('history', 'Ιστορικό:',['class'=>'col-sm-2 input-group-sm']) !!}
{!! Form::textarea('history',null,['class'=>'form-control', 'rows'=>6]) !!}
{!! Form::label('history_drug', 'Drug History - Drug Allergy:',['class'=>'col-sm-2 input-group-sm']) !!}
{!! Form::textarea('history_drug',null,['class'=>'form-control', 'rows'=>6]) !!}
{!! Form::label('comments', 'Παρατηρήσεις:',['class'=>'col-sm-2 input-group-sm']) !!}
{!! Form::textarea('comments',null,['class'=>'form-control', 'rows'=>3]) !!}
{!! Form::close() !!}
@stop @section('css') @stop @section('js') @stop