@extends('master-admin') @section('title', 'Manage User Business') @section('content') Manage Business Information for {{ $user->name }} @if(empty($business)) No business information found for this user. You can add it below. @endif @csrf Business Name * Business Email Phone Address {{ old('address', $business->address ?? '') }} Website Logo @if(!empty($business) && $business->logo) @endif GST Number PAN Number Other Registration Number Is Verified is_verified ?? 0) == 1 ? 'checked' : '' }}> Yes is_verified ?? 0) == 0 ? 'checked' : '' }}> No Is Locked is_locked ?? 0) == 1 ? 'checked' : '' }}> Yes is_locked ?? 0) == 0 ? 'checked' : '' }}> No Remark {{ old('remark', $business->remark ?? '') }} Save Back to Users @endsection @section('js') @endsection