@extends('layouts.app') @push('scripts') @endpush @section('content')

{{ __('Create New Profile') }}

@csrf
@include('components.translatable-input', [ 'name' => 'profilename', 'type' => 'text', 'model' => null, 'required' => true, ]) @error('profilename')
{{ $message }}
@enderror @error('profilename.en')
{{ $message }}
@enderror
{{ __('When enabled, this profile will be available for selection when creating or editing teams.') }}
{{ __('When enabled, this profile can be combined with others in teams and users may be asked to reuse existing results. Use for profiles that do not change quickly (e.g., motivation profiles). Disable for one-time assessments (e.g., team scans, behavioural assessments).') }}

{{ __('Pricing') }}
{{ __('Wholesale price for facilitators, excluding VAT.') }} @error('price')
{{ $message }}
@enderror
{{ __('Retail price for end consumers, including VAT.') }} @error('ext_price')
{{ $message }}
@enderror

{{ __('Cancel') }}
@endsection