@extends('admin.layouts.admin') @section('title') Admin | Edit School @endsection @section('styles') @endsection @section('content')

Edit School

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if ($errors->has('school_id')) @endif
@if ($errors->has('name')) @endif
@if ($errors->has('address')) @endif
@if ($errors->has('zip_code')) @endif
@endsection @section('scripts') @endsection