@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('insurance_groups.new_insurance_group') }}

@include('insurance::insurance_groups.menu') @include('flash::message') @include ('errors.list')
{{ Form::open(['route' => 'insurance_groups.store','data-toggle'=>'validator']) }}
{{ Form::label('name', __('insurance_groups.group_name')) }} {{ Form::text('name', '', ['class' => 'form-control compulsory', 'required']) }}
{{ Form::label('contact_name', __('insurance_groups.contact_name')) }} {{ Form::text('contact_name', '', ['class' => 'form-control compulsory', 'required']) }}
{{ Form::label('contact_number',__('insurance_groups.contact_phone_number')) }} {{ Form::text('contact_number','',['class' => 'form-control compulsory','required']) }}
{{ Form::label('group_email',__('insurance.email')) }} {{ Form::email('group_email','',['class' => 'form-control compulsory']) }}
{{ Form::label('country_id',__('patients.country_of_origin')) }} {{ Form::select('country_id', $countries, '',['class' => 'form-control', 'data-error'=>'Select the country', 'required']) }}
{{ Form::label('last_fees_billing_date', __('insurance.date_of_last_fees_billing')) }}
{{ Form::text('last_fees_billing_date','',['class' => 'form-control','readonly','id'=>'last_fees_billing_date']) }}
{{ Form::label('last_fees_payment_date', __('insurance.date_of_last_fees_payment')) }}
{{ Form::text('last_fees_payment_date','',['class' => 'form-control','readonly','id'=>'last_fees_payment_date']) }}
{{ Form::label('risk_id',__('insurance.risk')) }} {{ Form::select('risk_id[]', $chi_risks, '',['class' => 'form-control compulsory risk_id', 'data-error'=>'Select the risk', 'required', 'multiple']) }}
{{ Form::button(__('insurance_groups.submit'),['type'=>'submit','class'=>'btn btn-success waves-effect waves-light m-r-10']) }} {{ Form::button(__('insurance_groups.cancel'),['type'=>'reset','class'=>'btn btn-default waves-effect waves-light']) }} {{ Form::close() }}
@endsection @push('scripts') @endpush