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

@yield('title')

@endsection @section('content')
@if (has_permissions('create', 'customer'))
{!! Form::open(['route' => 'owners.create']) !!} {{ method_field('get') }} {{ Form::submit(__('Add Owner'), ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endif
{{ __('ID') }} Doc {{ __('Name') }} {{ __('Number') }} {{ __('Address') }} {{ __('Active Status') }} {{ __('Enable/Disable') }}
@endsection @section('script') @endsection