@extends('backend.layout.main') @section('content') @if(session()->has('not_permitted'))
{{ session()->get('not_permitted') }}
@endif

{{trans('file.Update Customer')}}

{{trans('file.The field labels marked with * are required input fields')}}.

{!! Form::open(['route' => ['customer.update',$lims_customer_data->id], 'method' => 'put', 'files' => true]) !!}
@if($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if(!$lims_customer_data->user_id)
 
@endif
@if($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::close() !!}
@endsection @push('scripts') @endpush