{{ Form::open(['route' => ['user.add_ownership_request', $itemType, $itemName] ,'class' => 'margin-right', 'method' => 'post']) }}
{{ Form::label('first_name', trans('emails.first_name'), ['class' => 'control-label']) }}
{{ Form::text('first_name', $errors->has('first_name') ? null : Session::get('ownershipData.first_name'), ['class' => 'form-control']) }}
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
{{ Form::label('last_name', trans('emails.last_name'), ['class' => 'control-label']) }}
{{ Form::text('last_name', $errors->has('last_name') ? null : Session::get('ownershipData.last_name'), ['class' => 'form-control']) }}
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
{{ Form::label('email', trans('emails.email'), ['class' => 'control-label']) }}
{{ Form::text('email', $errors->has('email') ? null : Session::get('ownershipData.email'), ['class' => 'form-control']) }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::label('subject', trans('emails.subject'), ['class' => 'control-label']) }}
{{ Form::text('subject', $itemDisplayName.': '.trans('common.add_ownership_request_modal'), ['class' => 'form-control']) }}
@if ($errors->has('email'))
{{ $errors->first('subject') }}
@endif
{{ Form::label('description', trans('emails.description'), ['class' => 'control-label']) }}
{{ Form::textarea('description', null, ['class' => 'form-control']) }}