لماذا عند الضغط علي زر حفظ تظهر مشكلة 419 Page Expired
@extends('layouts.master')
@section('title')
الاقسام
@stop
@section('css')
<style>
.form-group {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
#name {
width: 50%;
}
</style>
@stop
@section('title_page1')
الاقسام
@stop
@section('title_page2')
اضافة قسم
@stop
@section('content')
<form action="{{ route('Department.index') }}" method="post">
@csrf
<div class="form-group">
<label for="name">اسم القسم</label>
<input type="text" name="name" id="name" class="form-control">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">حفظ</button>
</div>
</form>
@stop
@section('scripts')
@stop