@extends('layouts.main') @section('title') {{ __('Contracts') }} @endsection @section('page-title')

@yield('title')

@endsection @section('content')
@if (has_permissions('create', 'contract'))
{!! Form::open(['route' => 'contracts.create']) !!} {{ method_field('get') }} {{ Form::submit(__('Create Contract'), ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endif
{{-- {{ Form::label('category', 'Category', ['class' => 'form-label col-12 text-center']) }} --}}
{{-- {{ Form::label('status', 'Status', ['class' => 'form-label col-12 text-center']) }} --}}
@if (Request::input('unpaid')) @else @endif
{{ __('ID') }} {{ __('Property') }} {{ __('Customer') }} {{ __('Init Date') }} {{ __('End Date') }} {{ __('Action') }}
@endsection @section('script') @endsection