@extends('themes.default1.admin.layout.admin') @section('Emails') active @stop @section('settings-bar') active @stop @section('email') class="active" @stop @section('HeadInclude') @stop @section('PageHeader')

{{Lang::get('lang.emails')}}

@stop @section('breadcrumbs') @stop @section('content') {!! Form::model($emails,['url' => 'postemail/'.$emails->id, 'method' => 'PATCH']) !!}

{{Lang::get('lang.email-settings')}}

@if(Session::has('success'))
{!!Session::get('success')!!}
@endif @if(Session::has('fails'))
{!! lang::get('lang.success') !!} ! {!!Session::get('fails')!!}
@endif @if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@if($errors->first('sys_email'))
  • {!! $errors->first('sys_email', ':message') !!}
  • @endif
    @endif
    {!! Form::checkbox('all_emails',1,true) !!} {{Lang::get('lang.accept_all_email')}}
    {!! Form::checkbox('email_collaborator',1) !!} {{Lang::get('lang.accept_email_collab')}}
    {!! Form::checkbox('attachment',1) !!} {{Lang::get('lang.attachments')}}
    @stop