@extends('layouts.default')
@section('title', 'Create agreement')
@section('header-links')
@include('includes.headers.agreements')
@endsection
@section('new_button')
listAgreement list
@endsection
@section('content')
{{ Form::open(['url'=>'agreements', 'method'=>'POST', 'data-toggle'=>'validator', 'role'=>'form', 'files'=>'true']) }}
{{ Form::textGroup('name', 'Agreement name', null, ['id'=>'agreement_name', 'required'=>'required']) }}
{{ Form::file('agreement') }}
{{ Form::saveButton('Save') }}
{{--
--}}
{{ Form::close() }}
{{-- CKEDITOR --}}
@stop