@extends('layouts.app') @section('title', isset($school) ? 'Edit School' : 'Add School') @section('breadcrumb', 'Schools › ' . (isset($school) ? 'Edit' : 'Add School')) @section('content')
{{ isset($school) ? 'Edit ' . $school->name : 'Add New School' }}
@csrf @if(isset($school)) @method('PUT') @endif
@error('name')
{{ $message }}
@enderror
Unique short code. Cannot be changed after creation.
@error('code')
{{ $message }}
@enderror
@if(isset($school))
@endif
Cancel
@endsection