@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.') }}

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