@extends('layouts.app') @section('title', 'Custom Font | Settings | Website') @section('extrastyles') @endsection @section('content')
Fonts Available
{!! Form::open(['novalidate' => 'novalidate']) !!} @foreach($fonts as $font)
{!! Form::checkbox('_custom_selected_fonts[]',$font, (is_array($selectedFonts) && in_array($font,$selectedFonts)) ? $font : false ) !!} {!! Form::label('_custom_selected_fonts',ucfirst($font)) !!}
{ font-family: '{{ ucfirst($font) }}' }
@endforeach
{!! Form::close() !!}
@endsection @section('footer') @endsection