@extends('backend.student.layouts.right_side_bar')
@section('studentBody')
@if(session('success'))
Success {{session('success')}}
@endif
@if(session('error'))
Error {{session('error')}}
@endif
@if($errors->any())
@foreach($errors->all() as $error)
Error {{$error}}
@endforeach
@endif
@endsection