@extends('admin.layout') @section('content')

{{ trans('Update Customer') }}

@php $getUserRoleData = userRoleData(); $RhysleyCustomers = explode(",",$getUserRoleData->RhysleyCustomers); @endphp
@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
{!! Form::open(array('url' => route('rhysley-customers.update', $result['data']->id), 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addRhysleyCustomer', 'enctype'=>'multipart/form-data')) !!} @method('put')
{{ trans('labels.back') }}

Customer Information

Address Information

Attachments
Drop files here or click to upload.
Drop files in the box or click on "+" to upload.
@if(count($result['data']->get_attachmets)>0)
Files
    @foreach($result['data']->get_attachmets as $rsVal)
  • {{$rsVal->attachment}} Uploaded by: {{$rsVal['managed_by']->first_name}} {{$rsVal['managed_by']->last_name}} on {{date('d-m-Y H:i:s', strtotime($rsVal->created_at))}}
  • @endforeach
@endif
{!! Form::close() !!}
@endsection @section('scripts') @endsection