@extends('layouts.masterLayout.app') @section('content')

Create Requests

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('department_id'))
{{ $errors->first('department_id') }}
@endif
{{--
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
--}}
@if ($errors->has('discription'))
{{ $errors->first('discription') }}
@endif
@endsection