@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New Use Case') }}

@csrf
{{ __('Case Title') }}
@error('title')

{{ $errors->first('title') }}

@enderror
{{ __('Case Icon') }}
@error('icon')

{{ $errors->first('icon') }}

@enderror
{{ __('Case Status') }}
{{ __('Case Description') }}
@error('description')

{{ $errors->first('description') }}

@enderror
{{ __('Return') }}
@endsection