Master template for login features
Split the login code into a master template for the page layout, and a specific
template for the card content.
To use it:
@extends('auth.master')
@section('card-content')
<p>Here the code to print in the card.</p>
@stop