Make sure that the file extension is .blade.php
Laravel blade shows code and no render
Good day! I have an issue I do not understand. May be someone might be able to help. I am still learning laravel. I have small project with html admin template. One of the html page displays the laravel blade codes and this happens at profile and password html area. The rest of the pages are fine. In other words the blade page do not render. Any help?
I am running php 8-> Laravel 10 Below is an example of what it displays
@csrf @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif avatar image No file chosen Upload a Photo Address {{$profileData- student->address?? "No category"}} > City {{$profileData- student->city ?? "No category"}} > Country {{$profileData- student->country ?? "No category"}} > Phone {{$profileData- student->phone?? "No category"}} > Email {{$profileData- email}} > Update Profile @endsection ?>
Please or to participate in this conversation.