@extends('layouts.main') @section('title', 'Edit Corporate Client') @section('content')
{{-- Header --}}

Edit Corporate Client

Update corporate client details

{{-- Body --}}
{{-- Success --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Errors --}} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Form --}}
@csrf
{{-- Name --}}
{{-- Email --}}
{{-- Password --}}
{{-- Department --}}
{{-- Employee ID --}}
{{-- Buttons --}}
Back
@endsection