@extends('layout') @section('title') Customer @endsection @section('content') Edit Customer Home Customer @include('flash-message') New Customer Submit Basic Info Customer Info @csrf Photo Choose file Display Name* Email* Phone Number* +62 Group* As User As Admin First Name* Middle Name* Last Name* Mother Name* Birth Date Birth Place Gender* Male Female Religion* Islam Kristen Hindu Budha Other Office +62 Mobile +62 Whatsapp +62 Fax +62 Email Website Address* City* Province* Latitude Longitude Branch @php $employeeBranch = Session::get('employee')->InfoBranchId; @endphp ` @foreach(App\Models\Branch::all() as $branch) @if(!empty($employeeBranch) && !is_null($employeeBranch)) @if($branch->BranchId == $employeeBranch) {{$branch->BranchName}} @endif @else {{$branch->BranchName}} @endif @endforeach First Transaction Date Last Transaction Date Total Transaction No @endsection @section('script') @endsection