@extends('backend.layouts.app') @section('title', @$data['title']) @section('content')
@csrf

{{ @$data['title'] }}

@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('team_lead_id'))
{{ $errors->first('team_lead_id') }}
@endif
@if ($errors->has('status_id'))
{{ $errors->first('status_id') }}
@endif
@endsection