@extends('layout.mainlayout') @section('content')
@component('components.breadcrumb') @slot('title') {{ isset($networkinformation) ? 'Edit Network Information' : 'Add Network Information' }} @endslot @endcomponent
{{ isset($networkinformation) ? 'Edit' : 'Create' }} Network Information
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if (isset($networkinformation)) @method('PUT') @endif
{{ old('g5_ca_combination', $networkinformation->g5_ca_combination ?? '') }}
@if(isset($networkinformation) && $networkinformation->attachment_path) @endif
Back to List
@endsection