@extends('layouts.admissions') @section('content')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('status'))
{{session('status')}}
@endif
NB:You should end format with slash(/) and without spacing.
@stop