@extends('admin.layouts.admin') @section('title') Admin | Show school @endsection @section('styles') @endsection @section('content')

Show School Details

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@if($recordDetails['is_active'] == 1) ACTIVE @else INACTIVE @endif

{{ $recordDetails['school_id']??'Not found' }}

{{ $recordDetails->name??'Not found' }}

{{ $recordDetails->email??'Not found' }}

{{ $recordDetails->phone??'Not found' }}

{{ $recordDetails->address??'Not found' }}

{{ $recordDetails->zip??'Not found' }}

@endsection @section('scripts') @endsection