@extends('admin.zsi.layouts.admin') @section('content')
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
Invalid Data! Please fix the errors below and try again.
@endif
@csrf @if (isset($profile)) @method('PUT') @endif
{{ isset($profile) ? 'Edit Profile' : 'Add Profile' }}
{{-- Name English --}}
@error('szName') {{ $message }} @enderror
{{-- Name Hindi --}}
{{-- Designation English --}}
{{-- Designation Hindi --}}
{{-- Image --}}
@if (!empty($profile->szImageName))
@endif
{{-- Image Alt --}}
{{-- Profile Description --}}
@endsection