quand j'affiche le code source tout est bien avec l' id et les class de style
mais la forme ne change pas

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
<!DOCTYPE html>
<html>
<head>
<title>{{$title}}</title>
 
{{ HTML::style('layouts/dist/css/bootstrap.css') }}
{{ HTML::style('layouts/dist/css/jumbotron.css') }}
 
</head>
<body>
 
	@if(Session::has('sucess'))
		<p style="color:green;">{{ Session::get('sucess') }}</p>
	@endif
 
	@if(Session::has('error'))
		<p style="color:red;">{{ Session::get('error') }}</p>
	@endif
 
	@yield('content')
 
</body>
</html>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
@extends('layouts.default')
 
 
@section('content')
 
{{ Form::open(array('url' => 'admin/connect', 'class'=>'navbar-form center', 'method' => 'POST')) }}
 
        <div class="form-group">
            <h2 class="form-signin-heading">Welcome</h2>
            <input type="text" placeholder="Login" class="form-control" autofocus > <br><br>
            <input type="password" placeholder="Password" class="form-control"> <br><br>
            <button type="submit" class="btn btn-success">Sign in</button> <br>
        </div>
 
{{ Form::close() }}
 
@stop