@extends('layouts.business.master') @section('title') {{ request('type') !== 'Supplier' ? __('Edit Customer') : __('Edit Supplier') }} @endsection @php $file = base_path('lang/countrylist.json'); if (file_exists($file)) { $countries = json_decode(file_get_contents($file), true); } else { $countries = []; } $type = request('type') !== 'Supplier' ? 'Customer' : 'Supplier'; @endphp @section('main_content')