@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.activity.title_singular') }}
@csrf
@if($errors->has('page'))
{{ $errors->first('page') }}
@endif {{ trans('cruds.activity.fields.page_helper') }}
@if($errors->has('coach'))
{{ $errors->first('coach') }}
@endif {{ trans('cruds.activity.fields.coach_helper') }}
@if($errors->has('ip'))
{{ $errors->first('ip') }}
@endif {{ trans('cruds.activity.fields.ip_helper') }}
@if($errors->has('session'))
{{ $errors->first('session') }}
@endif {{ trans('cruds.activity.fields.session_helper') }}
@if($errors->has('user_agent'))
{{ $errors->first('user_agent') }}
@endif {{ trans('cruds.activity.fields.user_agent_helper') }}
@if($errors->has('is_bot'))
{{ $errors->first('is_bot') }}
@endif {{ trans('cruds.activity.fields.is_bot_helper') }}
@if($errors->has('is_mobile'))
{{ $errors->first('is_mobile') }}
@endif {{ trans('cruds.activity.fields.is_mobile_helper') }}
@if($errors->has('region'))
{{ $errors->first('region') }}
@endif {{ trans('cruds.activity.fields.region_helper') }}
@endsection