FileViewFinder.php 第 137 行中的 InvalidArgumentException:未找到视图 [books.edit]

InvalidArgumentException in FileViewFinder.php line 137: View [books.edit] not found

我收到类似这样的错误 FileViewFinder.php 第 137 行中的 InvalidArgumentException:未找到视图 [books.edit] 我的路线 Route::resource('books','BookController');
Route::get('books', 'BookController@index');
Route::get('books/edit/{id}', 'BookController@edit');

My View<br>

@extends('layout/template')

@section('content')
 <h1>BookStore</h1>
 <a href="{{url('/books/create')}}" class="btn btn-success">Create Book</a>
 <hr>
 <table class="table table-striped table-bordered table-hover">
     <thead>
     <tr class="bg-info">
         <th>Id</th>
         <th>ISBN</th>
         <th>Title</th>
         <th>Author</th>
         <th>Publisher</th>
         <th>Thumbs</th>
         <th colspan="3" style="text-align: center;">Actions</th>
     </tr>
     </thead>
     <tbody>
     @foreach ($books as $book)
         <tr class="bg-info">
             <td>{{ $book->id }}</td>
             <td>{{ $book->isbn }}</td>
             <td>{{ $book->title }}</td>
             <td>{{ $book->author }}</td>
             <td>{{ $book->publisher }}</td>
             <td><img src="{{asset('img/'.$book->image.'.jpg')}}" height="35" width="30"></td>
             <td><a href="{{url('books',$book->id)}}" class="btn btn-primary">Read</a></td>
             <td><a href="{{url('books/edit',$book->id)}}" class="btn btn-warning">Update</a></td>
             <td>
             {!! Form::open(['method' => 'DELETE', 'route'=>['books.destroy', $book->id]]) !!}
             {!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!}
             {!! Form::close() !!}
             </td>
         </tr>
     @endforeach

     </tbody>

 </table>
@endsection

我解决了我的视图文件问题

一些变化

我已经添加了html表格。