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

Create Requests

@csrf @method('PUT')
@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
@if ($errors->has('reply'))
{{ $errors->first('reply') }}
@endif
@endsection