@extends('Admin/layout/master') @section('title', 'Insurance Edit') @section('content')
Update Insurance Company
{!! Form::open(['route' => ['insurence.update',$insurenc_company->id], 'method' => 'post']) !!}
{!! Form::label('payer_id', 'Payer ID', ['class' => 'form-label']) !!} {!! Form::text('payer_id', $insurenc_company->payer_id, ['class' => 'form-control', 'placeholder' => 'Payer ID']) !!} {!! $errors->first('payer_id', ':message') !!}
{!! Form::label('insurence_company_name', 'Insurance Company Name', ['class' => 'form-label']) !!} {!! Form::text('insurence_company_name', $insurenc_company->insurence_company_name, [ 'class' => 'form-control', 'placeholder' => 'Insurance Company Name', ]) !!} {!! $errors->first('insurence_company_name', ':message') !!}
{!! Form::label('address', 'Address', ['class' => 'form-label']) !!} {!! Form::text('address', $insurenc_company->address, ['class' => 'form-control', 'placeholder' => 'Address']) !!} {!! $errors->first('address', ':message') !!}
{!! Form::label('phone_number', 'Phone Number', ['class' => 'form-label']) !!} {!! Form::text('phone_number', $insurenc_company->phone_number, ['class' => 'form-control', 'placeholder' => 'Phone Number']) !!} {!! $errors->first('phone_number', ':message') !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary btn-sm my-2']) !!} Back
{!! Form::close() !!}
@endsection