I have a simple section in which I would like to use jquery, Here is what I have so far
@extends('layouts.app', ['activePage' => 'user-management', 'titlePage' => __('User Management')])
@section('content')
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h1> TESTING inline JS </h1>
</div>
</div>
</div>
</div>
@endsection
@section('script')
<script type="text/javascript">
alert('Imagination');
</script>
@endsection
When I run my app there is no alert just text Testing inline js
What is wrong with my code?