@extends('layouts.default')
@section('title','Reminder to Book a Service')
@section('content')
@if(Session::has('sms_error_message'))
{{Session::get('sms_error_message')}}
@endif
@if(Session::has('sms_success_message'))
{{Session::get('sms_success_message')}}
@endif
@if(Session::has('email_error_message'))
{{Session::get('email_error_message')}}
@endif
@if(Session::has('email_success_message'))
{{Session::get('email_success_message')}}
@endif
@stop