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

{{ trans('Add 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.store'), 'method'=>'post', 'class' => 'form-horizontal', 'id' => 'addRhysleyCustomer', 'enctype'=>'multipart/form-data')) !!}
{{ 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.
{!! Form::close() !!}
@endsection @section('scripts') @endsection