-1
In the user id it has 2 record only that at the time of saving it only saves 1 record and not the 2, as I must do to save correctly ?
Follows Code below
Controller Lists user data
public function listardados(){
    $matricula = Matricula::where('user_id', Auth::id())->get();
    //dd($matricula);
    return view('dashboard.renovacao.teste', compact( 'matricula'));
}
-- Controller Saves form record
public function store(RenovacaoRequest $request){
    $user = Auth()->user();
    $dados = $request->all();
    $renovacao = Renovacao::create($dados);
    return view('dashboard.renovacao.confirmacao', compact ('renovacao'));
}
-- View form
@extends('layouts.app') @section('content')
<div class="container">
    <div class="row">
        <form class="form-horizontal " id="regForm" action="{{route('renovacao.store')}}" method="POST">
            <div class="card-panel white">
                <h4 class="center">Solicitar Renovação</h4>
                <div class="row"></div>
                {{ csrf_field()}}
                <right>
                    <a>**Dados Cadastrados**</a>
                </right>
                <div class="row"></div>
                <div class="row"></div>
                <div class="row">
                    @foreach($matricula as $matric)
                    <div class="row">
                        <div class="col s6 m6">
                        <div class="input-field {{$errors->has('user_id') ? 'has-error' : ''}} ">
                            <label for="produto">Nome do Pai:</label>
                            <input type="text" class="form-control" name="nomerespo[]" value="{{ $matric->nomedopai }}">
                        </div>
                        </div>
                        <div class="col s6 m6">
                        <div class="input-field {{$errors->has('user_id') ? 'has-error' : ''}} ">
                            <label for="produto">Nome do Aluno(a):</label>
                            <input type="text" class="form-control" name="nomealuno[]" value="{{ $matric->nomealuno }}">    
                        </div>
                        </div>
                </div>
                @endforeach
                <div class = "row">
                    <div class="col s12">
                        <a title="Voltar Para Página Principal" class="btn orange darken-4 btn-info left " href="/admin">Voltar
                            <i class="material-icons left">arrow_back_ios</i>
                        </a>
                        <button type="submit" class="btn orange darken-4 btn-info right">Confirmar
                            <i class="material-icons left">save</i>
                        </button>
                    </div>
                </div>
            </div>
        </div>    
    </form>
</div>
@endsection

Please avoid long discussions in the comments; your talk was moved to the chat
– Bacco
I just don’t understand this key in the foreach, where it comes from ?
– Elyton Silva
<input type="" name="rematricula[{{ $loop->index}}][matricula_id]" value="{{ $Matric->id }}"> I added to come matricula_id as I set it to not appear in the form along with the others ?
– Elyton Silva