@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.courseAssociateOfficer.title_singular') }}
@csrf
@if($errors->has('responsibilty'))
{{ $errors->first('responsibilty') }}
@endif {{ trans('cruds.courseAssociateOfficer.fields.responsibilty_helper') }}
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.courseAssociateOfficer.fields.user_helper') }}
@if($errors->has('course'))
{{ $errors->first('course') }}
@endif {{ trans('cruds.courseAssociateOfficer.fields.course_helper') }}
@endsection