@extends('layouts.master') @section('content') @php $user_types = config('custom.user_type'); @endphp

CarrierUser Edit

Back to Carrier Profile

@csrf
@error('mem_id') {{ $message }} @enderror
@if ($errors->has('active')) {{ $errors->first('active') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@error('user_type') {{ $message }} @enderror
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('commission')) {{ $errors->first('commission') }} @endif
@php $dateValue = $carrierUser->changetime ? date('Y-m-d', strtotime($carrierUser->changetime)) : null; @endphp
@if ($errors->has('changetime')) {{ $errors->first('changetime') }} @endif
Cancel
@endsection() @section('script') @endsection